SRP484717 / GSE253670¶
paper: 10.1101/2024.02.05.578945 - The Guinea Pig: A New Model for Human Preimplantation Development, 2024
- still a preprint, first posted in february 2024
- it does appear that PMID: 37284942, a methods paper by the same authos, might have the same data but we don't have access to this paper
date, curator: 2025-02-20, Sara Carsanaro
resources
- supplemental table 1 - this has all the metadata needed to annotate, including:
- the 541 cells that passed QC (vs all 661 that are found in SRA)
- cell types
- stage and exact developmemtal time
notes
- using for developmental stages over guinea pig ontology uberon given uberon has more exact stages for embryo development
annotation summary¶
run these when annotation is complete
In [ ]:
# cell type annotations
display_df(cell_df_complete)
| infoCellType_abInitio | notes_cell | cellTypeId_ | cellTypeName_ | cellTypeAnnotationStatus_ | cell_type_new | comment_cell | |
|---|---|---|---|---|---|---|---|
| 0 | ICM: EPI | inner cell mass: epiblast | CL:0000352 | epiblast cell | perfect match | ||
| 1 | ICM: ICM | icm: inner cell mass | CL:2000020 | inner cell mass cell | perfect match | ||
| 2 | ICM: PE | icm: primitive endoderm | CL:0000223 | endodermal cell | other | ||
| 3 | Prelineage: 8 cell | CL:0000353 | blastoderm cell | other | |||
| 4 | Prelineage: Morula | CL:0000353 | blastoderm cell | other | |||
| 5 | Prelineage: Precavitation | CL:0000353 | blastoderm cell | other | |||
| 6 | TE: mural | TE = trophoectoderm, per paper mural TE initiates attachment and implantation, no subterms for TE cells in CL | CL:1000274 | trophectodermal cell | missing child term | ||
| 7 | TE: polar | TE = trophoectoderm, no subterms for TE cells in CL | CL:1000274 | trophectodermal cell | missing child term |
In [ ]:
# organ annotations
display_df(organ_df_complete)
| infoOrgan | notes_anat | anatId_ | anatName_ | anatAnnotationStatus_ | infoOrgan_new | comment_anat | |
|---|---|---|---|---|---|---|---|
| 0 | 16 cell: E4 | UBERON:0000085 | morula | missing child term | |||
| 1 | 16 cell: E4.5 | UBERON:0000085 | morula | missing child term | |||
| 2 | 16-32 cell: E4.5 | seems morula is appropriate for 16-64 cell stages | UBERON:0000085 | morula | missing child term | ||
| 3 | 16-32 cell: E4.75 | seems morula is appropriate for 16-64 cell stages | UBERON:0000085 | morula | missing child term | ||
| 4 | 8 cell: E3.5 | UBERON:0019252 | 8-cell stage embryo | perfect match | |||
| 5 | Early blastocyst: E4.5 | UBERON:0000358 | blastocyst | missing child term | |||
| 6 | Early blastocyst: E5 | UBERON:0000358 | blastocyst | missing child term | |||
| 7 | Early blastocyst: E5.25 | UBERON:0000358 | blastocyst | missing child term | |||
| 8 | Late blastocyst: E5.5 | UBERON:0000358 | blastocyst | missing child term | |||
| 9 | Late blastocyst: E5.75 | UBERON:0000358 | blastocyst | missing child term | |||
| 10 | Late blastocyst: E6 | UBERON:0000358 | blastocyst | missing child term | |||
| 11 | Middle blastocyst: E5.25 | UBERON:0000358 | blastocyst | missing child term | |||
| 12 | Middle blastocyst: E5.5 | UBERON:0000358 | blastocyst | missing child term | |||
| 13 | Middle blastocyst: E5.75 | UBERON:0000358 | blastocyst | missing child term |
In [ ]:
# stage annotations
display_df(stage_df_complete)
| infoStage | notes_stage | stageId_ | stageName_ | stageAnnotationStatus_ | infoStage_new | comment_stage | |
|---|---|---|---|---|---|---|---|
| 0 | 16 cell: E4 | UBERON:0000107 | cleavage stage | missing child term | |||
| 1 | 16 cell: E4.5 | UBERON:0000107 | cleavage stage | missing child term | |||
| 2 | 16-32 cell: E4.5 | UBERON:0000107 | cleavage stage | missing child term | |||
| 3 | 16-32 cell: E4.75 | UBERON:0000107 | cleavage stage | missing child term | |||
| 4 | 8 cell: E3.5 | UBERON:0007236 | 8 cell stage | perfect match | |||
| 5 | Early blastocyst: E4.5 | UBERON:0000108 | blastula stage | missing child term | |||
| 6 | Early blastocyst: E5 | UBERON:0000108 | blastula stage | missing child term | |||
| 7 | Early blastocyst: E5.25 | UBERON:0000108 | blastula stage | missing child term | |||
| 8 | Late blastocyst: E5.5 | UBERON:0000108 | blastula stage | missing child term | |||
| 9 | Late blastocyst: E5.75 | UBERON:0000108 | blastula stage | missing child term | |||
| 10 | Late blastocyst: E6 | UBERON:0000108 | blastula stage | missing child term | |||
| 11 | Middle blastocyst: E5.25 | UBERON:0000108 | blastula stage | missing child term | |||
| 12 | Middle blastocyst: E5.5 | UBERON:0000108 | blastula stage | missing child term | |||
| 13 | Middle blastocyst: E5.75 | UBERON:0000108 | blastula stage | missing child term |
set variables, import packages, define functions¶
In [ ]:
experiment_id = "SRP484717"
path_to_create_exp_script = "/Users/scarsana/Desktop/git/scRNA-Seq/scripts/Create_ExpLib_tables.py"
path_to_barcodes_script = "/Users/scarsana/Desktop/git/scRNA-Seq/scripts/create_scRNASeq_barcode_v2.py"
experiment_type = "scRNA"
import os
path_to_output_main = "/Users/scarsana/Desktop/git/expression-annotations/Notebooks/scRNA/"
path_to_output = "{}{}/".format(path_to_output_main, experiment_id)
path_to_initial_folder = "{}initial/".format(path_to_output)
if not os.path.exists(path_to_initial_folder):
os.makedirs(path_to_initial_folder)
library_path_from_script = "{}scRNASeqLibrary_{}.tsv".format(path_to_initial_folder, experiment_id)
experiment_path_from_script = "{}scRNASeqExperiment_{}.tsv".format(path_to_initial_folder, experiment_id)
barcode_path = "{}scRNASeq_barcode_{}.tsv".format(path_to_initial_folder, experiment_id)
path_to_complete_folder = "{}complete/".format(path_to_output)
if not os.path.exists(path_to_complete_folder):
os.makedirs(path_to_complete_folder)
barcode_to_add_path = "{}complete_scRNASeq_barcode_{}.tsv".format(path_to_complete_folder, experiment_id)
library_to_add_path = "{}complete_scRNASeqLibrary_{}.tsv".format(path_to_complete_folder, experiment_id)
experiment_to_add_path = "{}complete_RNASeqExperiment_{}.tsv".format(path_to_complete_folder, experiment_id)
script_file = "{}.ipynb".format(experiment_id)
commit_message_exp = '"adding annotated scRNA experiment {}"'.format(experiment_id)
commit_message_py = '"adding annotation files for {} to notebook folder"'.format(experiment_id)
## to add to git
path_to_git_annotations = "/Users/scarsana/Desktop/git/expression-annotations/scRNA_Seq/"
git_library_path = "{}scRNASeqLibrary_merged.tsv".format(path_to_git_annotations)
git_experiment_path = "{}scRNASeqExperiment.tsv".format(path_to_git_annotations)
git_barcode_path = "{}scRNASeq_barcode_{}.tsv".format(path_to_git_annotations, experiment_id)
## columns
library_cols = ['#libraryId', 'experimentId', 'platform', 'SRSId', 'anatId', 'anatName', 'cellTypeId', 'cellTypeName', 'stageId', 'stageName', 'url_GSM', 'infoOrgan', 'infoCellType_abInitio', 'infoCellType_inferred', 'clusterId', 'clusterName', 'infoStage', 'anatAnnotationStatus', 'cellTypeAnnotationStatus', 'stageAnnotationStatus', 'sex', 'strain', 'genotype', 'speciesId', 'RNAseqTags', 'protocol', 'protocolType', 'lib_name', 'sampleName', 'comment', 'condition', 'annotatorId', 'lastModificationDate']
barcode_cols = ['barcode', 'cluster', 'library', 'experiment', 'tissue', 'cell_type', 'anatId_a_posteriori', 'anatName_a_posteriori', 'anat_a_posteriori_annotationStatus', 'cellTypeId', 'cellTypeName', 'cellTypeAnnotationStatus', 'name_Library', 'comments']
## annotation sheet paths (maybe make these into their own folder)
annotation_files_path = "{}annotation_files/".format(path_to_output)
if not os.path.exists(annotation_files_path):
os.makedirs(annotation_files_path)
info_anat_path = "{}info_anat.tsv".format(annotation_files_path)
info_anat_complete_path = "{}info_anat_complete.tsv".format(annotation_files_path)
info_stage_path = "{}info_dev_stage.tsv".format(annotation_files_path)
info_stage_complete_path = "{}info_dev_stage_complete.tsv".format(annotation_files_path)
info_celltype_path = "{}info_celltype.tsv".format(annotation_files_path)
info_celltype_complete_path = "{}info_celltype_complete.tsv".format(annotation_files_path)
## barcode file & matching library names - 10X only
path_to_barcode_file = "{}barcode_{}.tsv".format(path_to_output, experiment_id)
lib_names_path = "{}matching_lib_names_{}.tsv".format(path_to_initial_folder, experiment_id)
In [ ]:
import warnings
warnings.simplefilter(action='ignore', category=FutureWarning)
import pandas as pd
import numpy as np
from IPython.display import display, HTML
import csv
import scanpy as sc
# displays df with the scrollbar next to the DataFrame
def display_df(df):
pd.set_option("display.max_rows", None)
pd.set_option("display.max_columns", None)
display(HTML("<div style='height: 200px; overflow: auto; width: fit-content'>" +
df.style.to_html(index=False) + "</div>"))
# function that compares two columns in a dataframe and tells you which ones are not equal (case insensitive)
def compare_columns(df, col1, col2, return_col):
compare_return = df[col1].str.lower() != df[col2].str.lower()
df.loc[compare_return, return_col]
if not any(compare_return):
print("The two columns are equal (case insensitive)")
else:
print("The following rows are not equal: ")
print(df.loc[compare_return, [return_col, col1, col2]])
# fixes formatting of file to match libreoffice settings/historic file format
def update_format(path):
with open(path, 'r') as file:
filedata = file.read()
# Replace the target string
filedata = filedata.replace("\t\"\"", "\t")
# Write the file out again
with open(path, 'w') as file:
file.write(filedata)
# checks for duplicate values in a specific column and prints those values + the corresponding library id
def dup_check(df, column):
duplicateCheck = df.duplicated(subset=[column], keep=False)
duplicateCheck.sort_values(inplace=True)
if duplicateCheck.unique().any() == False:
print("no duplicate values in " + column)
elif duplicateCheck.unique().any() == True and column != '#libraryId':
dups = df[duplicateCheck].loc[:,['#libraryId', column]]
df_dups = pd.DataFrame(dups)
df_dups.sort_values(inplace=True, by=column)
print(df_dups)
elif duplicateCheck.unique().any() == True and column == '#libraryId':
print(df[duplicateCheck].loc[:,['#libraryId']])
# prints all unique values in a specific column
def unique_sorted(df, column):
unique = df[column].unique()
unique.sort()
print(unique)
/var/folders/b5/crkp117d43q5mcndnwlrww3w0000gn/T/ipykernel_1635/2872653486.py:3: DeprecationWarning:
Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0),
(to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries)
but was not found to be installed on your system.
If this would cause problems for you,
please provide us feedback at https://github.com/pandas-dev/pandas/issues/54466
import pandas as pd
script¶
In [ ]:
! python3 $path_to_create_exp_script $experiment_id $path_to_initial_folder $experiment_type
/Users/scarsana/Desktop/git/scRNA-Seq/scripts/Create_ExpLib_tables.py:97: SyntaxWarning: invalid escape sequence '\('
all_protoc = [w.replace('(', '\(') for w in all_protoc]
/Users/scarsana/Desktop/git/scRNA-Seq/scripts/Create_ExpLib_tables.py:98: SyntaxWarning: invalid escape sequence '\)'
all_protoc = [w.replace(')', '\)') for w in all_protoc]
/Users/scarsana/Desktop/git/scRNA-Seq/scripts/Create_ExpLib_tables.py:11: DeprecationWarning:
Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0),
(to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries)
but was not found to be installed on your system.
If this would cause problems for you,
please provide us feedback at https://github.com/pandas-dev/pandas/issues/54466
import pandas as pd
Be patient, it may take a few minutes.
0it [00:00, ?it/s]
0 samples dont have attributes, try to find them somewhere else
0it [00:00, ?it/s]
0 samples dont have attributes
remove low quality cells¶
- low-quality cells were removed based on three criteria: resulting in 541 cells remaining out of the 661 initially sequenced cells
- supplemental table 1 has the correct 541 cells that passed QC metrics
- need to remove the cells that failed QC from library file
- also want to add additional information from supplemental table 1 to library file since it has cell types, developmental stage, and anatomical entity
In [ ]:
supp_1 = pd.read_csv("supp_1.csv", index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
In [ ]:
library_1 = pd.read_csv(library_path_from_script, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
In [ ]:
library_1[['lib_name_2', 'lib_name_3']] = library_1['lib_name'].str.split(" ", n=1, expand = True)
In [ ]:
combined = library_1.merge(supp_1, how = 'outer',left_on='lib_name_2', right_on='cell')
In [ ]:
low_quality = combined[combined['cell'].isna()]
new_library = combined[~combined['cell'].isna()]
collect IDs from low quality cells to remove¶
In [ ]:
low_quality_remove = low_quality[["#libraryId", "experimentId"]]
In [ ]:
low_quality_remove["comments"] = "not passed QC from authors, see https://doi.org/10.1101/2024.02.05.578945"
/var/folders/b5/crkp117d43q5mcndnwlrww3w0000gn/T/ipykernel_56532/159512783.py:1: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy low_quality_remove["comments"] = "not passed QC from authors, see https://doi.org/10.1101/2024.02.05.578945"
In [ ]:
low_quality_remove["annotatorId"] = "SAC"
low_quality_remove["date"] = "2025-02-18"
/var/folders/b5/crkp117d43q5mcndnwlrww3w0000gn/T/ipykernel_56532/1504161933.py:1: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy low_quality_remove["annotatorId"] = "SAC" /var/folders/b5/crkp117d43q5mcndnwlrww3w0000gn/T/ipykernel_56532/1504161933.py:2: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy low_quality_remove["date"] = "2025-02-18"
In [ ]:
low_quality_remove.to_csv("complete/to_remove_libraries.tsv", sep="\t", index=False, quoting=csv.QUOTE_ALL)
modify library file to include information from supplementary table 1¶
In [ ]:
new_library[["EML", "big_EML", "stage", "infoStage_2", "devTime"]].drop_duplicates().sort_values( by = "devTime")
Out[ ]:
| EML | big_EML | stage | infoStage_2 | devTime | |
|---|---|---|---|---|---|
| 0 | 8 cell | Prelineage | 8C | 8 cell | E3.5 |
| 1 | Morula | Prelineage | 16C | 16 cell | E4 |
| 413 | Precavitation | Prelineage | 16C | 16 cell | E4.5 |
| 11 | Morula | Prelineage | 16C | 16 cell | E4.5 |
| 300 | ICM | ICM | EB | Early blastocyst | E4.5 |
| 297 | PE | ICM | EB | Early blastocyst | E4.5 |
| 275 | polar | TE | EB | Early blastocyst | E4.5 |
| 274 | EPI | ICM | EB | Early blastocyst | E4.5 |
| 61 | Precavitation | Prelineage | 16-32 cell | 16-32 cell | E4.5 |
| 79 | Morula | Prelineage | 16-32 cell | 16-32 cell | E4.5 |
| 89 | ICM | ICM | 16-32 cell | 16-32 cell | E4.5 |
| 119 | polar | TE | 16-32 cell | 16-32 cell | E4.5 |
| 257 | Morula | Prelineage | 16-32 cell | 16-32 cell | E4.75 |
| 256 | Precavitation | Prelineage | 16-32 cell | 16-32 cell | E4.75 |
| 577 | polar | TE | EB | Early blastocyst | E5 |
| 579 | ICM | ICM | EB | Early blastocyst | E5 |
| 583 | EPI | ICM | EB | Early blastocyst | E5 |
| 501 | PE | ICM | MB | Middle blastocyst | E5.25 |
| 499 | polar | TE | MB | Middle blastocyst | E5.25 |
| 16 | PE | ICM | EB | Early blastocyst | E5.25 |
| 18 | polar | TE | EB | Early blastocyst | E5.25 |
| 19 | ICM | ICM | EB | Early blastocyst | E5.25 |
| 20 | EPI | ICM | EB | Early blastocyst | E5.25 |
| 149 | polar | TE | MB | Middle blastocyst | E5.5 |
| 114 | PE | ICM | LB | Late blastocyst | E5.5 |
| 104 | mural | TE | LB | Late blastocyst | E5.5 |
| 162 | EPI | ICM | MB | Middle blastocyst | E5.5 |
| 150 | PE | ICM | MB | Middle blastocyst | E5.5 |
| 154 | mural | TE | MB | Middle blastocyst | E5.5 |
| 239 | mural | TE | LB | Late blastocyst | E5.75 |
| 147 | polar | TE | LB | Late blastocyst | E5.75 |
| 7 | polar | TE | MB | Middle blastocyst | E5.75 |
| 448 | PE | ICM | MB | Middle blastocyst | E5.75 |
| 146 | EPI | ICM | LB | Late blastocyst | E5.75 |
| 2 | EPI | ICM | MB | Middle blastocyst | E5.75 |
| 236 | PE | ICM | LB | Late blastocyst | E5.75 |
| 224 | polar | TE | LB | Late blastocyst | E6 |
| 223 | EPI | ICM | LB | Late blastocyst | E6 |
| 221 | mural | TE | LB | Late blastocyst | E6 |
| 213 | PE | ICM | LB | Late blastocyst | E6 |
combining the two columns so we don't lose the exact devTime info in our files
- infoStage_2 is long form version of stage, to use infoStage_2
- devTime is exact time, to add to infoStage but not use uniquely
In [ ]:
new_library['stageTime'] = new_library[['infoStage_2', 'devTime']].apply(': '.join, axis=1)
/var/folders/b5/crkp117d43q5mcndnwlrww3w0000gn/T/ipykernel_56532/3278253462.py:1: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
new_library['stageTime'] = new_library[['infoStage_2', 'devTime']].apply(': '.join, axis=1)
now to look into cell types:
- TE = trophectoderm
- ICM = inner cell mass
- EPI = epiblast
- PE = primitive endoderm
In [ ]:
new_library[["EML", "big_EML", "stage"]].drop_duplicates().sort_values( by = "big_EML")
Out[ ]:
| EML | big_EML | stage | |
|---|---|---|---|
| 150 | PE | ICM | MB |
| 2 | EPI | ICM | MB |
| 146 | EPI | ICM | LB |
| 16 | PE | ICM | EB |
| 114 | PE | ICM | LB |
| 19 | ICM | ICM | EB |
| 20 | EPI | ICM | EB |
| 89 | ICM | ICM | 16-32 cell |
| 0 | 8 cell | Prelineage | 8C |
| 79 | Morula | Prelineage | 16-32 cell |
| 61 | Precavitation | Prelineage | 16-32 cell |
| 1 | Morula | Prelineage | 16C |
| 413 | Precavitation | Prelineage | 16C |
| 104 | mural | TE | LB |
| 18 | polar | TE | EB |
| 119 | polar | TE | 16-32 cell |
| 7 | polar | TE | MB |
| 147 | polar | TE | LB |
| 154 | mural | TE | MB |
from the paper, big_EML is large cell groupings (prelineage, ICM/EPI, TE) and EML is more specific cell types within it. i'm also going to combine these for assistance when annotating cell types
In [ ]:
new_library['cell_type_all'] = new_library[['big_EML', 'EML']].apply(': '.join, axis=1)
/var/folders/b5/crkp117d43q5mcndnwlrww3w0000gn/T/ipykernel_56532/2404253388.py:1: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
new_library['cell_type_all'] = new_library[['big_EML', 'EML']].apply(': '.join, axis=1)
In [ ]:
new_library['infoOrgan'] = new_library['stageTime'].values
new_library['infoStage'] = new_library['stageTime'].values
new_library['infoCellType_abInitio'] = new_library['cell_type_all'].values
/var/folders/b5/crkp117d43q5mcndnwlrww3w0000gn/T/ipykernel_56532/2109825958.py:1: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy new_library['infoOrgan'] = new_library['stageTime'].values /var/folders/b5/crkp117d43q5mcndnwlrww3w0000gn/T/ipykernel_56532/2109825958.py:2: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy new_library['infoStage'] = new_library['stageTime'].values /var/folders/b5/crkp117d43q5mcndnwlrww3w0000gn/T/ipykernel_56532/2109825958.py:3: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame. Try using .loc[row_indexer,col_indexer] = value instead See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy new_library['infoCellType_abInitio'] = new_library['cell_type_all'].values
In [ ]:
library = new_library[library_cols]
display_df(library)
library.to_csv(library_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRX23310999 | SRP484717 | Illumina NovaSeq 6000 | SRS20187327 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024795 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_1 (21PG50-2) | SAMN39504047 | 17/02/2025 | |||||||||||||||||||
| 1 | SRX23311255 | SRP484717 | Illumina NovaSeq 6000 | SRS20187583 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024796 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_10 (21PG39-1) | SAMN39504046 | 17/02/2025 | |||||||||||||||||||
| 2 | SRX23311256 | SRP484717 | Illumina NovaSeq 6000 | SRS20187584 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024797 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_100 (21PG55-2) | SAMN39504045 | 17/02/2025 | |||||||||||||||||||
| 3 | SRX23311257 | SRP484717 | Illumina NovaSeq 6000 | SRS20187585 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024798 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_101 (21PG55-2) | SAMN39504044 | 17/02/2025 | |||||||||||||||||||
| 4 | SRX23311258 | SRP484717 | Illumina NovaSeq 6000 | SRS20187586 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024799 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_102 (21PG55-2) | SAMN39504043 | 17/02/2025 | |||||||||||||||||||
| 5 | SRX23311259 | SRP484717 | Illumina NovaSeq 6000 | SRS20187590 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024800 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_103 (21PG55-2) | SAMN39504042 | 17/02/2025 | |||||||||||||||||||
| 6 | SRX23310825 | SRP484717 | Illumina NovaSeq 6000 | SRS20187153 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024801 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_104 (21PG55-2) | SAMN39504041 | 17/02/2025 | |||||||||||||||||||
| 7 | SRX23310826 | SRP484717 | Illumina NovaSeq 6000 | SRS20187154 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024802 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_105 (21PG55-2) | SAMN39504040 | 17/02/2025 | |||||||||||||||||||
| 8 | SRX23310827 | SRP484717 | Illumina NovaSeq 6000 | SRS20187157 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024803 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_106 (21PG55-2) | SAMN39504039 | 17/02/2025 | |||||||||||||||||||
| 9 | SRX23311000 | SRP484717 | Illumina NovaSeq 6000 | SRS20187330 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024804 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_107 (21PG55-2) | SAMN39504038 | 17/02/2025 | |||||||||||||||||||
| 10 | SRX23311001 | SRP484717 | Illumina NovaSeq 6000 | SRS20187329 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024805 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_108 (21PG55-2) | SAMN39504037 | 17/02/2025 | |||||||||||||||||||
| 11 | SRX23311002 | SRP484717 | Illumina NovaSeq 6000 | SRS20187328 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024806 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_109 (21PG34-1) | SAMN39504036 | 17/02/2025 | |||||||||||||||||||
| 12 | SRX23311003 | SRP484717 | Illumina NovaSeq 6000 | SRS20187331 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024807 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_11 (21PG39-1) | SAMN39504035 | 17/02/2025 | |||||||||||||||||||
| 13 | SRX23311004 | SRP484717 | Illumina NovaSeq 6000 | SRS20187333 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024808 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_110 (21PG34-1) | SAMN39504034 | 17/02/2025 | |||||||||||||||||||
| 15 | SRX23311006 | SRP484717 | Illumina NovaSeq 6000 | SRS20187334 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024810 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_112 (21PG34-1) | SAMN39504032 | 17/02/2025 | |||||||||||||||||||
| 16 | SRX23311007 | SRP484717 | Illumina NovaSeq 6000 | SRS20187335 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024811 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_113 (21PG37-2) | SAMN39504031 | 17/02/2025 | |||||||||||||||||||
| 17 | SRX23311392 | SRP484717 | Illumina NovaSeq 6000 | SRS20187719 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024812 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_114 (21PG37-2) | SAMN39504030 | 17/02/2025 | |||||||||||||||||||
| 18 | SRX23311393 | SRP484717 | Illumina NovaSeq 6000 | SRS20187721 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024813 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_115 (21PG37-2) | SAMN39504029 | 17/02/2025 | |||||||||||||||||||
| 19 | SRX23311394 | SRP484717 | Illumina NovaSeq 6000 | SRS20187722 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024814 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_116 (21PG37-2) | SAMN39504028 | 17/02/2025 | |||||||||||||||||||
| 20 | SRX23311395 | SRP484717 | Illumina NovaSeq 6000 | SRS20187724 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024815 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_117 (21PG37-2) | SAMN39504027 | 17/02/2025 | |||||||||||||||||||
| 22 | SRX23311397 | SRP484717 | Illumina NovaSeq 6000 | SRS20187725 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024817 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_119 (21PG37-2) | SAMN39504025 | 17/02/2025 | |||||||||||||||||||
| 23 | SRX23311398 | SRP484717 | Illumina NovaSeq 6000 | SRS20187726 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024818 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_12 (21PG39-1) | SAMN39504024 | 17/02/2025 | |||||||||||||||||||
| 24 | SRX23311399 | SRP484717 | Illumina NovaSeq 6000 | SRS20187727 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024819 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_120 (21PG37-2) | SAMN39504023 | 17/02/2025 | |||||||||||||||||||
| 25 | SRX23310828 | SRP484717 | Illumina NovaSeq 6000 | SRS20187156 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024820 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_121 (21PG37-2) | SAMN39504022 | 17/02/2025 | |||||||||||||||||||
| 26 | SRX23310829 | SRP484717 | Illumina NovaSeq 6000 | SRS20187158 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024821 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_122 (21PG37-2) | SAMN39504021 | 17/02/2025 | |||||||||||||||||||
| 28 | SRX23310831 | SRP484717 | Illumina NovaSeq 6000 | SRS20187159 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024823 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_124 (21PG37-3) | SAMN39504019 | 17/02/2025 | |||||||||||||||||||
| 29 | SRX23310832 | SRP484717 | Illumina NovaSeq 6000 | SRS20187160 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024824 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_125 (21PG37-3) | SAMN39504018 | 17/02/2025 | |||||||||||||||||||
| 30 | SRX23310833 | SRP484717 | Illumina NovaSeq 6000 | SRS20187161 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024825 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_126 (21PG37-3) | SAMN39504017 | 17/02/2025 | |||||||||||||||||||
| 31 | SRX23310834 | SRP484717 | Illumina NovaSeq 6000 | SRS20187163 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024826 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_127 (21PG37-3) | SAMN39504016 | 17/02/2025 | |||||||||||||||||||
| 32 | SRX23310835 | SRP484717 | Illumina NovaSeq 6000 | SRS20187162 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024827 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_128 (21PG37-3) | SAMN39504015 | 17/02/2025 | |||||||||||||||||||
| 33 | SRX23311008 | SRP484717 | Illumina NovaSeq 6000 | SRS20187336 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024828 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_129 (21PG37-3) | SAMN39504014 | 17/02/2025 | |||||||||||||||||||
| 34 | SRX23311009 | SRP484717 | Illumina NovaSeq 6000 | SRS20187337 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024829 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_13 (21PG39-1) | SAMN39504013 | 17/02/2025 | |||||||||||||||||||
| 35 | SRX23311010 | SRP484717 | Illumina NovaSeq 6000 | SRS20187338 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024830 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_130 (21PG37-3) | SAMN39504012 | 17/02/2025 | |||||||||||||||||||
| 36 | SRX23311011 | SRP484717 | Illumina NovaSeq 6000 | SRS20187339 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024831 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_131 (21PG37-3) | SAMN39504011 | 17/02/2025 | |||||||||||||||||||
| 37 | SRX23311012 | SRP484717 | Illumina NovaSeq 6000 | SRS20187340 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024832 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_132 (21PG37-3) | SAMN39504010 | 17/02/2025 | |||||||||||||||||||
| 38 | SRX23311013 | SRP484717 | Illumina NovaSeq 6000 | SRS20187341 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024833 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_133 (21PG37-3) | SAMN39504009 | 17/02/2025 | |||||||||||||||||||
| 39 | SRX23311014 | SRP484717 | Illumina NovaSeq 6000 | SRS20187342 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024834 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_134 (21PG37-3) | SAMN39504008 | 17/02/2025 | |||||||||||||||||||
| 40 | SRX23311015 | SRP484717 | Illumina NovaSeq 6000 | SRS20187343 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024835 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_135 (21PG37-3) | SAMN39504007 | 17/02/2025 | |||||||||||||||||||
| 41 | SRX23311400 | SRP484717 | Illumina NovaSeq 6000 | SRS20187728 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024836 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_136 (21PG37-3) | SAMN39504006 | 17/02/2025 | |||||||||||||||||||
| 43 | SRX23311402 | SRP484717 | Illumina NovaSeq 6000 | SRS20187730 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024838 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_138 (21PG37-3) | SAMN39504004 | 17/02/2025 | |||||||||||||||||||
| 45 | SRX23311404 | SRP484717 | Illumina NovaSeq 6000 | SRS20187731 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024840 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_14 (21PG39-1) | SAMN39504002 | 17/02/2025 | |||||||||||||||||||
| 46 | SRX23311405 | SRP484717 | Illumina NovaSeq 6000 | SRS20187733 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024841 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_140 (21PG37-3) | SAMN39504001 | 17/02/2025 | |||||||||||||||||||
| 47 | SRX23311406 | SRP484717 | Illumina NovaSeq 6000 | SRS20187732 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024842 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_141 (21PG37-3) | SAMN39504000 | 17/02/2025 | |||||||||||||||||||
| 56 | SRX23310985 | SRP484717 | Illumina NovaSeq 6000 | SRS20187311 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024851 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_15 (21PG39-1) | SAMN39503991 | 17/02/2025 | |||||||||||||||||||
| 58 | SRX23310837 | SRP484717 | Illumina NovaSeq 6000 | SRS20187165 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024853 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_151 (21PG55-2) | SAMN39503989 | 17/02/2025 | |||||||||||||||||||
| 61 | SRX23310840 | SRP484717 | Illumina NovaSeq 6000 | SRS20187168 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024856 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_154 (21PG53-1) | SAMN39503986 | 17/02/2025 | |||||||||||||||||||
| 63 | SRX23310842 | SRP484717 | Illumina NovaSeq 6000 | SRS20187170 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024858 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_156 (21PG55-2) | SAMN39503984 | 17/02/2025 | |||||||||||||||||||
| 64 | SRX23310843 | SRP484717 | Illumina NovaSeq 6000 | SRS20187171 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024859 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_157 (21PG53-1) | SAMN39503983 | 17/02/2025 | |||||||||||||||||||
| 65 | SRX23311016 | SRP484717 | Illumina NovaSeq 6000 | SRS20187344 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024860 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_158 (21PG53-1) | SAMN39503982 | 17/02/2025 | |||||||||||||||||||
| 66 | SRX23311017 | SRP484717 | Illumina NovaSeq 6000 | SRS20187345 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024861 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_159 (21PG53-1) | SAMN39503981 | 17/02/2025 | |||||||||||||||||||
| 67 | SRX23311018 | SRP484717 | Illumina NovaSeq 6000 | SRS20187346 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024862 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_16 (21PG39-1) | SAMN39503980 | 17/02/2025 | |||||||||||||||||||
| 68 | SRX23311019 | SRP484717 | Illumina NovaSeq 6000 | SRS20187347 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024863 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_160 (21PG53-1) | SAMN39503979 | 17/02/2025 | |||||||||||||||||||
| 69 | SRX23311020 | SRP484717 | Illumina NovaSeq 6000 | SRS20187348 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024864 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_161 (21PG53-1) | SAMN39503978 | 17/02/2025 | |||||||||||||||||||
| 70 | SRX23311021 | SRP484717 | Illumina NovaSeq 6000 | SRS20187350 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024865 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_162 (21PG53-1) | SAMN39503977 | 17/02/2025 | |||||||||||||||||||
| 71 | SRX23311022 | SRP484717 | Illumina NovaSeq 6000 | SRS20187352 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024866 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_163 (21PG53-1) | SAMN39503976 | 17/02/2025 | |||||||||||||||||||
| 72 | SRX23311023 | SRP484717 | Illumina NovaSeq 6000 | SRS20187351 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024867 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_164 (21PG53-1) | SAMN39503975 | 17/02/2025 | |||||||||||||||||||
| 73 | SRX23311408 | SRP484717 | Illumina NovaSeq 6000 | SRS20187736 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024868 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_165 (21PG53-1) | SAMN39503974 | 17/02/2025 | |||||||||||||||||||
| 74 | SRX23311409 | SRP484717 | Illumina NovaSeq 6000 | SRS20187738 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024869 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_166 (21PG53-1) | SAMN39503973 | 17/02/2025 | |||||||||||||||||||
| 75 | SRX23311410 | SRP484717 | Illumina NovaSeq 6000 | SRS20187737 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024870 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_167 (21PG53-1) | SAMN39503972 | 17/02/2025 | |||||||||||||||||||
| 76 | SRX23311411 | SRP484717 | Illumina NovaSeq 6000 | SRS20187741 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024871 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_168 (21PG53-1) | SAMN39503971 | 17/02/2025 | |||||||||||||||||||
| 77 | SRX23311412 | SRP484717 | Illumina NovaSeq 6000 | SRS20187742 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024872 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_169 (21PG53-1) | SAMN39503970 | 17/02/2025 | |||||||||||||||||||
| 78 | SRX23311413 | SRP484717 | Illumina NovaSeq 6000 | SRS20187740 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024873 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_17 (21PG39-2) | SAMN39503969 | 17/02/2025 | |||||||||||||||||||
| 79 | SRX23311414 | SRP484717 | Illumina NovaSeq 6000 | SRS20187739 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024874 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_170 (21PG53-1) | SAMN39503968 | 17/02/2025 | |||||||||||||||||||
| 82 | SRX23310987 | SRP484717 | Illumina NovaSeq 6000 | SRS20187315 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024877 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_173 (21PG77-2) | SAMN39503965 | 17/02/2025 | |||||||||||||||||||
| 83 | SRX23310988 | SRP484717 | Illumina NovaSeq 6000 | SRS20187316 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024878 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_174 (21PG77-2) | SAMN39503964 | 17/02/2025 | |||||||||||||||||||
| 85 | SRX23310990 | SRP484717 | Illumina NovaSeq 6000 | SRS20187318 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024880 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_176 (21PG77-2) | SAMN39503962 | 17/02/2025 | |||||||||||||||||||
| 86 | SRX23310991 | SRP484717 | Illumina NovaSeq 6000 | SRS20187319 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024881 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_177 (21PG77-2) | SAMN39503961 | 17/02/2025 | |||||||||||||||||||
| 87 | SRX23310992 | SRP484717 | Illumina NovaSeq 6000 | SRS20187321 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024882 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_178 (21PG77-2) | SAMN39503960 | 17/02/2025 | |||||||||||||||||||
| 88 | SRX23310993 | SRP484717 | Illumina NovaSeq 6000 | SRS20187320 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024883 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_179 (21PG77-2) | SAMN39503959 | 17/02/2025 | |||||||||||||||||||
| 89 | SRX23310844 | SRP484717 | Illumina NovaSeq 6000 | SRS20187173 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024884 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_18 (21PG40-1) | SAMN39503958 | 17/02/2025 | |||||||||||||||||||
| 90 | SRX23310845 | SRP484717 | Illumina NovaSeq 6000 | SRS20187172 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024885 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_180 (21PG77-2) | SAMN39503957 | 17/02/2025 | |||||||||||||||||||
| 91 | SRX23310846 | SRP484717 | Illumina NovaSeq 6000 | SRS20187175 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024886 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_181 (21PG77-2) | SAMN39503956 | 17/02/2025 | |||||||||||||||||||
| 92 | SRX23310847 | SRP484717 | Illumina NovaSeq 6000 | SRS20187174 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024887 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_182 (21PG77-2) | SAMN39503955 | 17/02/2025 | |||||||||||||||||||
| 93 | SRX23310848 | SRP484717 | Illumina NovaSeq 6000 | SRS20187176 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024888 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_183 (21PG77-2) | SAMN39503954 | 17/02/2025 | |||||||||||||||||||
| 94 | SRX23310849 | SRP484717 | Illumina NovaSeq 6000 | SRS20187178 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024889 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_184 (21PG77-2) | SAMN39503953 | 17/02/2025 | |||||||||||||||||||
| 95 | SRX23310850 | SRP484717 | Illumina NovaSeq 6000 | SRS20187177 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024890 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_185 (21PG77-2) | SAMN39503952 | 17/02/2025 | |||||||||||||||||||
| 96 | SRX23310851 | SRP484717 | Illumina NovaSeq 6000 | SRS20187179 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024891 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_186 (21PG50-1) | SAMN39503951 | 17/02/2025 | |||||||||||||||||||
| 97 | SRX23311024 | SRP484717 | Illumina NovaSeq 6000 | SRS20187349 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024892 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_187 (21PG50-1) | SAMN39503950 | 17/02/2025 | |||||||||||||||||||
| 98 | SRX23311025 | SRP484717 | Illumina NovaSeq 6000 | SRS20187354 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024893 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_188 (21PG50-1) | SAMN39503949 | 17/02/2025 | |||||||||||||||||||
| 100 | SRX23311027 | SRP484717 | Illumina NovaSeq 6000 | SRS20187353 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024895 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_19 (21PG40-1) | SAMN39503947 | 17/02/2025 | |||||||||||||||||||
| 102 | SRX23311029 | SRP484717 | Illumina NovaSeq 6000 | SRS20187356 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024897 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_191 (21PG50-1) | SAMN39503945 | 17/02/2025 | |||||||||||||||||||
| 103 | SRX23311030 | SRP484717 | Illumina NovaSeq 6000 | SRS20187359 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024898 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_192 (21PG50-1) | SAMN39503944 | 17/02/2025 | |||||||||||||||||||
| 104 | SRX23311031 | SRP484717 | Illumina NovaSeq 6000 | SRS20187360 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024899 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_193 (21PG57-1) | SAMN39503943 | 17/02/2025 | |||||||||||||||||||
| 106 | SRX23311417 | SRP484717 | Illumina NovaSeq 6000 | SRS20187747 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024901 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_195 (21PG57-1) | SAMN39503941 | 17/02/2025 | |||||||||||||||||||
| 107 | SRX23311418 | SRP484717 | Illumina NovaSeq 6000 | SRS20187745 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024902 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_196 (21PG57-1) | SAMN39503940 | 17/02/2025 | |||||||||||||||||||
| 108 | SRX23311419 | SRP484717 | Illumina NovaSeq 6000 | SRS20187746 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024903 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_198 (21PG57-1) | SAMN39503939 | 17/02/2025 | |||||||||||||||||||
| 109 | SRX23311420 | SRP484717 | Illumina NovaSeq 6000 | SRS20187749 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024904 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_2 (21PG50-2) | SAMN39503938 | 17/02/2025 | |||||||||||||||||||
| 110 | SRX23311421 | SRP484717 | Illumina NovaSeq 6000 | SRS20187748 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024905 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_20 (21PG40-1) | SAMN39503937 | 17/02/2025 | |||||||||||||||||||
| 111 | SRX23311422 | SRP484717 | Illumina NovaSeq 6000 | SRS20187750 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024906 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_200 (21PG57-1) | SAMN39503936 | 17/02/2025 | |||||||||||||||||||
| 112 | SRX23311423 | SRP484717 | Illumina NovaSeq 6000 | SRS20187753 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024907 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_201 (21PG57-1) | SAMN39503935 | 17/02/2025 | |||||||||||||||||||
| 113 | SRX23310994 | SRP484717 | Illumina NovaSeq 6000 | SRS20187322 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024908 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_202 (21PG57-1) | SAMN39503934 | 17/02/2025 | |||||||||||||||||||
| 114 | SRX23310995 | SRP484717 | Illumina NovaSeq 6000 | SRS20187323 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024909 | Late blastocyst: E5.5 | ICM: PE | Late blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_206 (21PG57-1) | SAMN39503933 | 17/02/2025 | |||||||||||||||||||
| 115 | SRX23310996 | SRP484717 | Illumina NovaSeq 6000 | SRS20187324 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024910 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_209 (21PG57-1) | SAMN39503932 | 17/02/2025 | |||||||||||||||||||
| 116 | SRX23310997 | SRP484717 | Illumina NovaSeq 6000 | SRS20187325 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024911 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_21 (21PG40-1) | SAMN39503931 | 17/02/2025 | |||||||||||||||||||
| 117 | SRX23310998 | SRP484717 | Illumina NovaSeq 6000 | SRS20187326 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024912 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_210 (21PG57-1) | SAMN39503930 | 17/02/2025 | |||||||||||||||||||
| 118 | SRX23311086 | SRP484717 | Illumina NovaSeq 6000 | SRS20187411 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024913 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_22 (21PG40-1) | SAMN39503929 | 17/02/2025 | |||||||||||||||||||
| 119 | SRX23311087 | SRP484717 | Illumina NovaSeq 6000 | SRS20187415 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024914 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_23 (21PG40-1) | SAMN39503928 | 17/02/2025 | |||||||||||||||||||
| 120 | SRX23311088 | SRP484717 | Illumina NovaSeq 6000 | SRS20187416 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024915 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_230 (21PG49-3) | SAMN39503927 | 17/02/2025 | |||||||||||||||||||
| 121 | SRX23310852 | SRP484717 | Illumina NovaSeq 6000 | SRS20187180 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024916 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_231 (21PG49-3) | SAMN39503926 | 17/02/2025 | |||||||||||||||||||
| 122 | SRX23310853 | SRP484717 | Illumina NovaSeq 6000 | SRS20187181 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024917 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_232 (21PG49-3) | SAMN39503925 | 17/02/2025 | |||||||||||||||||||
| 123 | SRX23310854 | SRP484717 | Illumina NovaSeq 6000 | SRS20187182 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024918 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_233 (21PG49-3) | SAMN39503924 | 17/02/2025 | |||||||||||||||||||
| 124 | SRX23310855 | SRP484717 | Illumina NovaSeq 6000 | SRS20187183 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024919 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_234 (21PG49-3) | SAMN39503923 | 17/02/2025 | |||||||||||||||||||
| 125 | SRX23310856 | SRP484717 | Illumina NovaSeq 6000 | SRS20187184 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024920 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_235 (21PG49-3) | SAMN39503922 | 17/02/2025 | |||||||||||||||||||
| 126 | SRX23310857 | SRP484717 | Illumina NovaSeq 6000 | SRS20187186 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024921 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_236 (21PG49-3) | SAMN39503921 | 17/02/2025 | |||||||||||||||||||
| 127 | SRX23310858 | SRP484717 | Illumina NovaSeq 6000 | SRS20187187 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024922 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_237 (21PG49-3) | SAMN39503920 | 17/02/2025 | |||||||||||||||||||
| 128 | SRX23310859 | SRP484717 | Illumina NovaSeq 6000 | SRS20187185 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024923 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_238 (21PG49-3) | SAMN39503919 | 17/02/2025 | |||||||||||||||||||
| 129 | SRX23311032 | SRP484717 | Illumina NovaSeq 6000 | SRS20187358 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024924 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_239 (21PG49-3) | SAMN39503918 | 17/02/2025 | |||||||||||||||||||
| 130 | SRX23311033 | SRP484717 | Illumina NovaSeq 6000 | SRS20187362 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024925 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_24 (21PG40-1) | SAMN39503917 | 17/02/2025 | |||||||||||||||||||
| 131 | SRX23311034 | SRP484717 | Illumina NovaSeq 6000 | SRS20187361 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024926 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_240 (21PG49-3) | SAMN39503916 | 17/02/2025 | |||||||||||||||||||
| 132 | SRX23311035 | SRP484717 | Illumina NovaSeq 6000 | SRS20187364 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024927 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_241 (21PG49-3) | SAMN39503915 | 17/02/2025 | |||||||||||||||||||
| 133 | SRX23311036 | SRP484717 | Illumina NovaSeq 6000 | SRS20187365 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024928 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_242 (21PG49-3) | SAMN39503914 | 17/02/2025 | |||||||||||||||||||
| 134 | SRX23311037 | SRP484717 | Illumina NovaSeq 6000 | SRS20187363 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024929 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_243 (21PG49-3) | SAMN39503913 | 17/02/2025 | |||||||||||||||||||
| 135 | SRX23311038 | SRP484717 | Illumina NovaSeq 6000 | SRS20187366 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024930 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_244 (21PG49-3) | SAMN39503912 | 17/02/2025 | |||||||||||||||||||
| 136 | SRX23311039 | SRP484717 | Illumina NovaSeq 6000 | SRS20187367 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024931 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_245 (21PG49-3) | SAMN39503911 | 17/02/2025 | |||||||||||||||||||
| 137 | SRX23311424 | SRP484717 | Illumina NovaSeq 6000 | SRS20187752 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024932 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_246 (21PG49-3) | SAMN39503910 | 17/02/2025 | |||||||||||||||||||
| 138 | SRX23311425 | SRP484717 | Illumina NovaSeq 6000 | SRS20187751 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024933 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_247 (21PG49-3) | SAMN39503909 | 17/02/2025 | |||||||||||||||||||
| 139 | SRX23311426 | SRP484717 | Illumina NovaSeq 6000 | SRS20187754 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024934 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_248 (21PG49-3) | SAMN39503908 | 17/02/2025 | |||||||||||||||||||
| 140 | SRX23311427 | SRP484717 | Illumina NovaSeq 6000 | SRS20187755 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024935 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_249 (21PG49-3) | SAMN39503907 | 17/02/2025 | |||||||||||||||||||
| 141 | SRX23311428 | SRP484717 | Illumina NovaSeq 6000 | SRS20187756 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024936 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_25 (21PG40-1) | SAMN39503906 | 17/02/2025 | |||||||||||||||||||
| 142 | SRX23311429 | SRP484717 | Illumina NovaSeq 6000 | SRS20187757 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024937 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_250 (21PG49-3) | SAMN39503905 | 17/02/2025 | |||||||||||||||||||
| 143 | SRX23311430 | SRP484717 | Illumina NovaSeq 6000 | SRS20187758 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024938 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_251 (21PG49-3) | SAMN39503904 | 17/02/2025 | |||||||||||||||||||
| 144 | SRX23311431 | SRP484717 | Illumina NovaSeq 6000 | SRS20187759 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024939 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_252 (21PG49-3) | SAMN39503903 | 17/02/2025 | |||||||||||||||||||
| 145 | SRX23311089 | SRP484717 | Illumina NovaSeq 6000 | SRS20187417 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024940 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_1_253 (21PG49-3) | SAMN39503902 | 17/02/2025 | |||||||||||||||||||
| 146 | SRX23311090 | SRP484717 | Illumina NovaSeq 6000 | SRS20187418 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024941 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_254 (21PG76-2) | SAMN39503901 | 17/02/2025 | |||||||||||||||||||
| 147 | SRX23311091 | SRP484717 | Illumina NovaSeq 6000 | SRS20187420 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024942 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_255 (21PG76-2) | SAMN39503900 | 17/02/2025 | |||||||||||||||||||
| 149 | SRX23311093 | SRP484717 | Illumina NovaSeq 6000 | SRS20187421 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024944 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_257 (20PG4-2) | SAMN39503898 | 17/02/2025 | |||||||||||||||||||
| 150 | SRX23311094 | SRP484717 | Illumina NovaSeq 6000 | SRS20187422 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024945 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_258 (20PG4-2) | SAMN39503897 | 17/02/2025 | |||||||||||||||||||
| 151 | SRX23311095 | SRP484717 | Illumina NovaSeq 6000 | SRS20187424 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024946 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_259 (20PG4-2) | SAMN39503896 | 17/02/2025 | |||||||||||||||||||
| 152 | SRX23311096 | SRP484717 | Illumina NovaSeq 6000 | SRS20187423 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024947 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_26 (21PG40-1) | SAMN39503895 | 17/02/2025 | |||||||||||||||||||
| 153 | SRX23310860 | SRP484717 | Illumina NovaSeq 6000 | SRS20187188 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024948 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_260 (20PG4-2) | SAMN39503894 | 17/02/2025 | |||||||||||||||||||
| 154 | SRX23310861 | SRP484717 | Illumina NovaSeq 6000 | SRS20187190 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024949 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_261 (20PG4-2) | SAMN39503893 | 17/02/2025 | |||||||||||||||||||
| 155 | SRX23310862 | SRP484717 | Illumina NovaSeq 6000 | SRS20187189 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024950 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_262 (20PG4-2) | SAMN39503892 | 17/02/2025 | |||||||||||||||||||
| 156 | SRX23310863 | SRP484717 | Illumina NovaSeq 6000 | SRS20187191 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024951 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_263 (20PG4-2) | SAMN39503891 | 17/02/2025 | |||||||||||||||||||
| 157 | SRX23310864 | SRP484717 | Illumina NovaSeq 6000 | SRS20187192 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024952 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_264 (20PG4-2) | SAMN39503890 | 17/02/2025 | |||||||||||||||||||
| 158 | SRX23310865 | SRP484717 | Illumina NovaSeq 6000 | SRS20187194 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024953 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_265 (20PG4-2) | SAMN39503889 | 17/02/2025 | |||||||||||||||||||
| 159 | SRX23310866 | SRP484717 | Illumina NovaSeq 6000 | SRS20187193 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024954 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_266 (20PG4-2) | SAMN39503888 | 17/02/2025 | |||||||||||||||||||
| 160 | SRX23310867 | SRP484717 | Illumina NovaSeq 6000 | SRS20187195 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024955 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_267 (20PG4-2) | SAMN39503887 | 17/02/2025 | |||||||||||||||||||
| 161 | SRX23311040 | SRP484717 | Illumina NovaSeq 6000 | SRS20187368 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024956 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_268 (20PG4-2) | SAMN39503886 | 17/02/2025 | |||||||||||||||||||
| 162 | SRX23311041 | SRP484717 | Illumina NovaSeq 6000 | SRS20187371 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024957 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_269 (20PG4-2) | SAMN39503885 | 17/02/2025 | |||||||||||||||||||
| 163 | SRX23311042 | SRP484717 | Illumina NovaSeq 6000 | SRS20187369 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024958 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_27 (21PG40-1) | SAMN39503884 | 17/02/2025 | |||||||||||||||||||
| 164 | SRX23311043 | SRP484717 | Illumina NovaSeq 6000 | SRS20187370 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024959 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_270 (20PG4-2) | SAMN39503883 | 17/02/2025 | |||||||||||||||||||
| 165 | SRX23311044 | SRP484717 | Illumina NovaSeq 6000 | SRS20187372 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024960 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_271 (20PG4-2) | SAMN39503882 | 17/02/2025 | |||||||||||||||||||
| 166 | SRX23311045 | SRP484717 | Illumina NovaSeq 6000 | SRS20187374 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024961 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_272 (20PG4-2) | SAMN39503881 | 17/02/2025 | |||||||||||||||||||
| 167 | SRX23311046 | SRP484717 | Illumina NovaSeq 6000 | SRS20187373 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024962 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_273 (20PG4-2) | SAMN39503880 | 17/02/2025 | |||||||||||||||||||
| 168 | SRX23311047 | SRP484717 | Illumina NovaSeq 6000 | SRS20187376 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024963 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_274 (20PG4-2) | SAMN39503879 | 17/02/2025 | |||||||||||||||||||
| 169 | SRX23311432 | SRP484717 | Illumina NovaSeq 6000 | SRS20187760 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024964 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_275 (20PG4-2) | SAMN39503878 | 17/02/2025 | |||||||||||||||||||
| 170 | SRX23311433 | SRP484717 | Illumina NovaSeq 6000 | SRS20187761 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024965 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_276 (20PG4-2) | SAMN39503877 | 17/02/2025 | |||||||||||||||||||
| 171 | SRX23311434 | SRP484717 | Illumina NovaSeq 6000 | SRS20187762 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024966 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_277 (20PG4-2) | SAMN39503876 | 17/02/2025 | |||||||||||||||||||
| 172 | SRX23311435 | SRP484717 | Illumina NovaSeq 6000 | SRS20187764 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024967 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_278 (20PG4-2) | SAMN39503875 | 17/02/2025 | |||||||||||||||||||
| 173 | SRX23311436 | SRP484717 | Illumina NovaSeq 6000 | SRS20187763 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024968 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_279 (20PG4-2) | SAMN39503874 | 17/02/2025 | |||||||||||||||||||
| 174 | SRX23311437 | SRP484717 | Illumina NovaSeq 6000 | SRS20187765 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024969 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_28 (21PG40-1) | SAMN39503873 | 17/02/2025 | |||||||||||||||||||
| 175 | SRX23311438 | SRP484717 | Illumina NovaSeq 6000 | SRS20187769 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024970 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_280 (20PG4-2) | SAMN39503872 | 17/02/2025 | |||||||||||||||||||
| 176 | SRX23311439 | SRP484717 | Illumina NovaSeq 6000 | SRS20187767 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024971 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_281 (20PG4-2) | SAMN39503871 | 17/02/2025 | |||||||||||||||||||
| 177 | SRX23311097 | SRP484717 | Illumina NovaSeq 6000 | SRS20187425 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024972 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_282 (20PG4-2) | SAMN39503870 | 17/02/2025 | |||||||||||||||||||
| 178 | SRX23311098 | SRP484717 | Illumina NovaSeq 6000 | SRS20187426 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024973 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_283 (20PG4-2) | SAMN39503869 | 17/02/2025 | |||||||||||||||||||
| 179 | SRX23311099 | SRP484717 | Illumina NovaSeq 6000 | SRS20187427 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024974 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_284 (20PG4-2) | SAMN39503868 | 17/02/2025 | |||||||||||||||||||
| 180 | SRX23311100 | SRP484717 | Illumina NovaSeq 6000 | SRS20187429 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024975 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_285 (20PG4-2) | SAMN39503867 | 17/02/2025 | |||||||||||||||||||
| 181 | SRX23311101 | SRP484717 | Illumina NovaSeq 6000 | SRS20187430 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024976 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_286 (20PG4-2) | SAMN39503866 | 17/02/2025 | |||||||||||||||||||
| 182 | SRX23311102 | SRP484717 | Illumina NovaSeq 6000 | SRS20187428 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024977 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_287 (20PG4-2) | SAMN39503865 | 17/02/2025 | |||||||||||||||||||
| 183 | SRX23311103 | SRP484717 | Illumina NovaSeq 6000 | SRS20187431 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024978 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_288 (21PG57-1) | SAMN39503864 | 17/02/2025 | |||||||||||||||||||
| 185 | SRX23310868 | SRP484717 | Illumina NovaSeq 6000 | SRS20187197 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024980 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_29 (21PG40-1) | SAMN39503862 | 17/02/2025 | |||||||||||||||||||
| 186 | SRX23310869 | SRP484717 | Illumina NovaSeq 6000 | SRS20187196 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024981 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_290 (20PG4-1) | SAMN39503861 | 17/02/2025 | |||||||||||||||||||
| 187 | SRX23310870 | SRP484717 | Illumina NovaSeq 6000 | SRS20187198 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024982 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_291 (20PG4-1) | SAMN39503860 | 17/02/2025 | |||||||||||||||||||
| 188 | SRX23310871 | SRP484717 | Illumina NovaSeq 6000 | SRS20187199 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024983 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_292 (20PG4-1) | SAMN39503859 | 17/02/2025 | |||||||||||||||||||
| 189 | SRX23310872 | SRP484717 | Illumina NovaSeq 6000 | SRS20187202 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024984 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_293 (20PG4-1) | SAMN39503858 | 17/02/2025 | |||||||||||||||||||
| 190 | SRX23310873 | SRP484717 | Illumina NovaSeq 6000 | SRS20187200 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024985 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_294 (20PG4-1) | SAMN39503857 | 17/02/2025 | |||||||||||||||||||
| 191 | SRX23310874 | SRP484717 | Illumina NovaSeq 6000 | SRS20187201 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024986 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_295 (20PG4-1) | SAMN39503856 | 17/02/2025 | |||||||||||||||||||
| 192 | SRX23310875 | SRP484717 | Illumina NovaSeq 6000 | SRS20187203 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024987 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_296 (20PG4-1) | SAMN39503855 | 17/02/2025 | |||||||||||||||||||
| 193 | SRX23311048 | SRP484717 | Illumina NovaSeq 6000 | SRS20187375 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024988 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_297 (20PG4-1) | SAMN39503854 | 17/02/2025 | |||||||||||||||||||
| 194 | SRX23311049 | SRP484717 | Illumina NovaSeq 6000 | SRS20187377 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024989 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_298 (20PG4-1) | SAMN39503853 | 17/02/2025 | |||||||||||||||||||
| 195 | SRX23311050 | SRP484717 | Illumina NovaSeq 6000 | SRS20187378 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024990 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_299 (20PG4-1) | SAMN39503852 | 17/02/2025 | |||||||||||||||||||
| 196 | SRX23311051 | SRP484717 | Illumina NovaSeq 6000 | SRS20187379 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024991 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_3 (21PG50-2) | SAMN39503851 | 17/02/2025 | |||||||||||||||||||
| 197 | SRX23311052 | SRP484717 | Illumina NovaSeq 6000 | SRS20187380 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024992 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_30 (21PG40-1) | SAMN39503850 | 17/02/2025 | |||||||||||||||||||
| 198 | SRX23311053 | SRP484717 | Illumina NovaSeq 6000 | SRS20187381 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024993 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_300 (20PG4-1) | SAMN39503849 | 17/02/2025 | |||||||||||||||||||
| 199 | SRX23311054 | SRP484717 | Illumina NovaSeq 6000 | SRS20187382 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024994 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_301 (20PG4-1) | SAMN39503848 | 17/02/2025 | |||||||||||||||||||
| 200 | SRX23311055 | SRP484717 | Illumina NovaSeq 6000 | SRS20187383 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024995 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_302 (20PG4-1) | SAMN39503847 | 17/02/2025 | |||||||||||||||||||
| 202 | SRX23311441 | SRP484717 | Illumina NovaSeq 6000 | SRS20187768 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024997 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_304 (20PG4-1) | SAMN39503845 | 17/02/2025 | |||||||||||||||||||
| 203 | SRX23311442 | SRP484717 | Illumina NovaSeq 6000 | SRS20187772 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024998 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_305 (20PG4-1) | SAMN39503844 | 17/02/2025 | |||||||||||||||||||
| 204 | SRX23311443 | SRP484717 | Illumina NovaSeq 6000 | SRS20187770 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024999 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_306 (20PG4-1) | SAMN39503843 | 17/02/2025 | |||||||||||||||||||
| 205 | SRX23311444 | SRP484717 | Illumina NovaSeq 6000 | SRS20187771 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025000 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_307 (20PG4-1) | SAMN39503842 | 17/02/2025 | |||||||||||||||||||
| 207 | SRX23311446 | SRP484717 | Illumina NovaSeq 6000 | SRS20187774 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025002 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_309 (20PG4-1) | SAMN39503840 | 17/02/2025 | |||||||||||||||||||
| 208 | SRX23311447 | SRP484717 | Illumina NovaSeq 6000 | SRS20187775 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025003 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_31 (21PG40-1) | SAMN39503839 | 17/02/2025 | |||||||||||||||||||
| 210 | SRX23311106 | SRP484717 | Illumina NovaSeq 6000 | SRS20187435 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025005 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_1_311 (20PG4-1) | SAMN39503837 | 17/02/2025 | |||||||||||||||||||
| 213 | SRX23311109 | SRP484717 | Illumina NovaSeq 6000 | SRS20187437 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025008 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_314 (21PG75-1) | SAMN39503834 | 17/02/2025 | |||||||||||||||||||
| 214 | SRX23311110 | SRP484717 | Illumina NovaSeq 6000 | SRS20187436 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025009 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_315 (21PG75-1) | SAMN39503833 | 17/02/2025 | |||||||||||||||||||
| 215 | SRX23311111 | SRP484717 | Illumina NovaSeq 6000 | SRS20187440 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025010 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_316 (21PG75-1) | SAMN39503832 | 17/02/2025 | |||||||||||||||||||
| 218 | SRX23310877 | SRP484717 | Illumina NovaSeq 6000 | SRS20187204 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025013 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_319 (21PG75-1) | SAMN39503829 | 17/02/2025 | |||||||||||||||||||
| 219 | SRX23310878 | SRP484717 | Illumina NovaSeq 6000 | SRS20187206 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025014 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_32 (21PG40-1) | SAMN39503828 | 17/02/2025 | |||||||||||||||||||
| 220 | SRX23310879 | SRP484717 | Illumina NovaSeq 6000 | SRS20187207 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025015 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_320 (21PG75-1) | SAMN39503827 | 17/02/2025 | |||||||||||||||||||
| 221 | SRX23310880 | SRP484717 | Illumina NovaSeq 6000 | SRS20187208 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025016 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_321 (21PG75-1) | SAMN39503826 | 17/02/2025 | |||||||||||||||||||
| 222 | SRX23310881 | SRP484717 | Illumina NovaSeq 6000 | SRS20187209 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025017 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_322 (21PG75-1) | SAMN39503825 | 17/02/2025 | |||||||||||||||||||
| 223 | SRX23310882 | SRP484717 | Illumina NovaSeq 6000 | SRS20187212 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025018 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_323 (21PG75-1) | SAMN39503824 | 17/02/2025 | |||||||||||||||||||
| 224 | SRX23310883 | SRP484717 | Illumina NovaSeq 6000 | SRS20187211 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025019 | Late blastocyst: E6 | TE: polar | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_324 (21PG75-1) | SAMN39503823 | 17/02/2025 | |||||||||||||||||||
| 225 | SRX23311056 | SRP484717 | Illumina NovaSeq 6000 | SRS20187384 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025020 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_325 (21PG75-1) | SAMN39503822 | 17/02/2025 | |||||||||||||||||||
| 226 | SRX23311057 | SRP484717 | Illumina NovaSeq 6000 | SRS20187386 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025021 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_326 (21PG75-1) | SAMN39503821 | 17/02/2025 | |||||||||||||||||||
| 228 | SRX23311059 | SRP484717 | Illumina NovaSeq 6000 | SRS20187385 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025023 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_328 (21PG75-1) | SAMN39503819 | 17/02/2025 | |||||||||||||||||||
| 229 | SRX23311060 | SRP484717 | Illumina NovaSeq 6000 | SRS20187389 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025024 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_329 (21PG75-1) | SAMN39503818 | 17/02/2025 | |||||||||||||||||||
| 230 | SRX23311061 | SRP484717 | Illumina NovaSeq 6000 | SRS20187390 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025025 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_33 (21PG40-1) | SAMN39503817 | 17/02/2025 | |||||||||||||||||||
| 231 | SRX23311062 | SRP484717 | Illumina NovaSeq 6000 | SRS20187388 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025026 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_330 (21PG75-1) | SAMN39503816 | 17/02/2025 | |||||||||||||||||||
| 232 | SRX23311063 | SRP484717 | Illumina NovaSeq 6000 | SRS20187391 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025027 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_331 (21PG75-1) | SAMN39503815 | 17/02/2025 | |||||||||||||||||||
| 233 | SRX23311448 | SRP484717 | Illumina NovaSeq 6000 | SRS20187776 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025028 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_332 (21PG75-1) | SAMN39503814 | 17/02/2025 | |||||||||||||||||||
| 234 | SRX23311449 | SRP484717 | Illumina NovaSeq 6000 | SRS20187777 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025029 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_333 (21PG75-1) | SAMN39503813 | 17/02/2025 | |||||||||||||||||||
| 235 | SRX23311450 | SRP484717 | Illumina NovaSeq 6000 | SRS20187778 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025030 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_1_334 (21PG75-1) | SAMN39503812 | 17/02/2025 | |||||||||||||||||||
| 236 | SRX23311451 | SRP484717 | Illumina NovaSeq 6000 | SRS20187780 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025031 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_335 (21PG52-2) | SAMN39503811 | 17/02/2025 | |||||||||||||||||||
| 237 | SRX23311452 | SRP484717 | Illumina NovaSeq 6000 | SRS20187779 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025032 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_336 (21PG52-2) | SAMN39503810 | 17/02/2025 | |||||||||||||||||||
| 238 | SRX23311453 | SRP484717 | Illumina NovaSeq 6000 | SRS20187781 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025033 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_337 (21PG52-2) | SAMN39503809 | 17/02/2025 | |||||||||||||||||||
| 239 | SRX23311454 | SRP484717 | Illumina NovaSeq 6000 | SRS20187782 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025034 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_338 (21PG52-2) | SAMN39503808 | 17/02/2025 | |||||||||||||||||||
| 241 | SRX23311113 | SRP484717 | Illumina NovaSeq 6000 | SRS20187442 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025036 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_34 (21PG40-1) | SAMN39503806 | 17/02/2025 | |||||||||||||||||||
| 242 | SRX23311114 | SRP484717 | Illumina NovaSeq 6000 | SRS20187441 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025037 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_340 (21PG52-2) | SAMN39503805 | 17/02/2025 | |||||||||||||||||||
| 243 | SRX23311115 | SRP484717 | Illumina NovaSeq 6000 | SRS20187443 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025038 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_341 (21PG52-2) | SAMN39503804 | 17/02/2025 | |||||||||||||||||||
| 244 | SRX23311116 | SRP484717 | Illumina NovaSeq 6000 | SRS20187444 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025039 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_342 (21PG52-2) | SAMN39503803 | 17/02/2025 | |||||||||||||||||||
| 245 | SRX23311117 | SRP484717 | Illumina NovaSeq 6000 | SRS20187446 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025040 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_343 (21PG52-2) | SAMN39503802 | 17/02/2025 | |||||||||||||||||||
| 246 | SRX23311118 | SRP484717 | Illumina NovaSeq 6000 | SRS20187445 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025041 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_344 (21PG52-2) | SAMN39503801 | 17/02/2025 | |||||||||||||||||||
| 247 | SRX23311119 | SRP484717 | Illumina NovaSeq 6000 | SRS20187447 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025042 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_345 (21PG52-2) | SAMN39503800 | 17/02/2025 | |||||||||||||||||||
| 248 | SRX23311120 | SRP484717 | Illumina NovaSeq 6000 | SRS20187448 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025043 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_346 (21PG52-2) | SAMN39503799 | 17/02/2025 | |||||||||||||||||||
| 249 | SRX23310884 | SRP484717 | Illumina NovaSeq 6000 | SRS20187210 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025044 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_347 (21PG52-2) | SAMN39503798 | 17/02/2025 | |||||||||||||||||||
| 250 | SRX23310885 | SRP484717 | Illumina NovaSeq 6000 | SRS20187213 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025045 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_348 (21PG52-2) | SAMN39503797 | 17/02/2025 | |||||||||||||||||||
| 251 | SRX23310886 | SRP484717 | Illumina NovaSeq 6000 | SRS20187215 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025046 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_349 (21PG52-2) | SAMN39503796 | 17/02/2025 | |||||||||||||||||||
| 252 | SRX23310887 | SRP484717 | Illumina NovaSeq 6000 | SRS20187214 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025047 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_35 (21PG40-1) | SAMN39503795 | 17/02/2025 | |||||||||||||||||||
| 254 | SRX23310889 | SRP484717 | Illumina NovaSeq 6000 | SRS20187217 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025049 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_351 (21PG52-2) | SAMN39503793 | 17/02/2025 | |||||||||||||||||||
| 255 | SRX23310890 | SRP484717 | Illumina NovaSeq 6000 | SRS20187218 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025050 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_352 (21PG52-2) | SAMN39503792 | 17/02/2025 | |||||||||||||||||||
| 256 | SRX23310891 | SRP484717 | Illumina NovaSeq 6000 | SRS20187219 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025051 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | 10141 | Smart-Seq2 | Full-length | JC_1_353 (21PG41-1) | SAMN39503791 | 17/02/2025 | |||||||||||||||||||
| 257 | SRX23311064 | SRP484717 | Illumina NovaSeq 6000 | SRS20187392 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025052 | 16-32 cell: E4.75 | Prelineage: Morula | 16-32 cell: E4.75 | 10141 | Smart-Seq2 | Full-length | JC_1_354 (21PG41-1) | SAMN39503790 | 17/02/2025 | |||||||||||||||||||
| 258 | SRX23311065 | SRP484717 | Illumina NovaSeq 6000 | SRS20187393 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025053 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | 10141 | Smart-Seq2 | Full-length | JC_1_355 (21PG41-1) | SAMN39503789 | 17/02/2025 | |||||||||||||||||||
| 259 | SRX23311066 | SRP484717 | Illumina NovaSeq 6000 | SRS20187395 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025054 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | 10141 | Smart-Seq2 | Full-length | JC_1_356 (21PG41-1) | SAMN39503788 | 17/02/2025 | |||||||||||||||||||
| 260 | SRX23311067 | SRP484717 | Illumina NovaSeq 6000 | SRS20187396 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025055 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | 10141 | Smart-Seq2 | Full-length | JC_1_357 (21PG41-1) | SAMN39503787 | 17/02/2025 | |||||||||||||||||||
| 261 | SRX23311068 | SRP484717 | Illumina NovaSeq 6000 | SRS20187394 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025056 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | 10141 | Smart-Seq2 | Full-length | JC_1_358 (21PG41-1) | SAMN39503786 | 17/02/2025 | |||||||||||||||||||
| 262 | SRX23311069 | SRP484717 | Illumina NovaSeq 6000 | SRS20187397 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025057 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | 10141 | Smart-Seq2 | Full-length | JC_1_359 (21PG41-1) | SAMN39503785 | 17/02/2025 | |||||||||||||||||||
| 263 | SRX23311070 | SRP484717 | Illumina NovaSeq 6000 | SRS20187398 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025058 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_36 (21PG40-1) | SAMN39503784 | 17/02/2025 | |||||||||||||||||||
| 264 | SRX23311071 | SRP484717 | Illumina NovaSeq 6000 | SRS20187399 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025059 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | 10141 | Smart-Seq2 | Full-length | JC_1_360 (21PG41-1) | SAMN39503783 | 17/02/2025 | |||||||||||||||||||
| 267 | SRX23311458 | SRP484717 | Illumina NovaSeq 6000 | SRS20187786 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025062 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_37 (21PG40-1) | SAMN39503780 | 17/02/2025 | |||||||||||||||||||
| 268 | SRX23311459 | SRP484717 | Illumina NovaSeq 6000 | SRS20187787 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025063 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_38 (21PG40-1) | SAMN39503779 | 17/02/2025 | |||||||||||||||||||
| 269 | SRX23311460 | SRP484717 | Illumina NovaSeq 6000 | SRS20187788 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025064 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_39 (21PG40-1) | SAMN39503778 | 17/02/2025 | |||||||||||||||||||
| 270 | SRX23311461 | SRP484717 | Illumina NovaSeq 6000 | SRS20187789 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025065 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_4 (21PG50-2) | SAMN39503777 | 17/02/2025 | |||||||||||||||||||
| 271 | SRX23311462 | SRP484717 | Illumina NovaSeq 6000 | SRS20187791 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025066 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_40 (21PG40-1) | SAMN39503776 | 17/02/2025 | |||||||||||||||||||
| 272 | SRX23311463 | SRP484717 | Illumina NovaSeq 6000 | SRS20187790 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025067 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_41 (21PG40-1) | SAMN39503775 | 17/02/2025 | |||||||||||||||||||
| 273 | SRX23311121 | SRP484717 | Illumina NovaSeq 6000 | SRS20187449 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025068 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_42 (21PG40-1) | SAMN39503774 | 17/02/2025 | |||||||||||||||||||
| 274 | SRX23311122 | SRP484717 | Illumina NovaSeq 6000 | SRS20187450 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025069 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_43 (21PG51-2) | SAMN39503773 | 17/02/2025 | |||||||||||||||||||
| 275 | SRX23311123 | SRP484717 | Illumina NovaSeq 6000 | SRS20187452 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025070 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_44 (21PG51-2) | SAMN39503772 | 17/02/2025 | |||||||||||||||||||
| 276 | SRX23311124 | SRP484717 | Illumina NovaSeq 6000 | SRS20187451 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025071 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_45 (21PG51-2) | SAMN39503771 | 17/02/2025 | |||||||||||||||||||
| 277 | SRX23311125 | SRP484717 | Illumina NovaSeq 6000 | SRS20187453 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025072 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_46 (21PG51-2) | SAMN39503770 | 17/02/2025 | |||||||||||||||||||
| 278 | SRX23311126 | SRP484717 | Illumina NovaSeq 6000 | SRS20187455 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025073 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_47 (21PG51-2) | SAMN39503769 | 17/02/2025 | |||||||||||||||||||
| 279 | SRX23311127 | SRP484717 | Illumina NovaSeq 6000 | SRS20187454 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025074 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_48 (21PG51-2) | SAMN39503768 | 17/02/2025 | |||||||||||||||||||
| 280 | SRX23311128 | SRP484717 | Illumina NovaSeq 6000 | SRS20187456 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025075 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_49 (21PG51-2) | SAMN39503767 | 17/02/2025 | |||||||||||||||||||
| 281 | SRX23310892 | SRP484717 | Illumina NovaSeq 6000 | SRS20187220 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025076 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_5 (21PG50-2) | SAMN39503766 | 17/02/2025 | |||||||||||||||||||
| 282 | SRX23310893 | SRP484717 | Illumina NovaSeq 6000 | SRS20187221 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025077 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_50 (21PG51-2) | SAMN39503765 | 17/02/2025 | |||||||||||||||||||
| 283 | SRX23310894 | SRP484717 | Illumina NovaSeq 6000 | SRS20187222 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025078 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_51 (21PG51-2) | SAMN39503764 | 17/02/2025 | |||||||||||||||||||
| 284 | SRX23310895 | SRP484717 | Illumina NovaSeq 6000 | SRS20187224 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025079 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_52 (21PG51-2) | SAMN39503763 | 17/02/2025 | |||||||||||||||||||
| 285 | SRX23310896 | SRP484717 | Illumina NovaSeq 6000 | SRS20187223 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025080 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_53 (21PG51-2) | SAMN39503762 | 17/02/2025 | |||||||||||||||||||
| 286 | SRX23310897 | SRP484717 | Illumina NovaSeq 6000 | SRS20187226 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025081 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_54 (21PG51-2) | SAMN39503761 | 17/02/2025 | |||||||||||||||||||
| 287 | SRX23310898 | SRP484717 | Illumina NovaSeq 6000 | SRS20187225 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025082 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_55 (21PG51-2) | SAMN39503760 | 17/02/2025 | |||||||||||||||||||
| 288 | SRX23310899 | SRP484717 | Illumina NovaSeq 6000 | SRS20187227 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025083 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_56 (21PG51-2) | SAMN39503759 | 17/02/2025 | |||||||||||||||||||
| 289 | SRX23311072 | SRP484717 | Illumina NovaSeq 6000 | SRS20187401 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025084 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_57 (21PG51-2) | SAMN39503758 | 17/02/2025 | |||||||||||||||||||
| 290 | SRX23311073 | SRP484717 | Illumina NovaSeq 6000 | SRS20187402 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025085 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_58 (21PG51-2) | SAMN39503757 | 17/02/2025 | |||||||||||||||||||
| 291 | SRX23311074 | SRP484717 | Illumina NovaSeq 6000 | SRS20187400 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025086 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_59 (21PG51-2) | SAMN39503756 | 17/02/2025 | |||||||||||||||||||
| 292 | SRX23311075 | SRP484717 | Illumina NovaSeq 6000 | SRS20187403 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025087 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_6 (21PG50-2) | SAMN39503755 | 17/02/2025 | |||||||||||||||||||
| 293 | SRX23311076 | SRP484717 | Illumina NovaSeq 6000 | SRS20187405 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025088 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_60 (21PG51-2) | SAMN39503754 | 17/02/2025 | |||||||||||||||||||
| 294 | SRX23311077 | SRP484717 | Illumina NovaSeq 6000 | SRS20187404 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025089 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_61 (21PG51-2) | SAMN39503753 | 17/02/2025 | |||||||||||||||||||
| 295 | SRX23311078 | SRP484717 | Illumina NovaSeq 6000 | SRS20187406 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025090 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_62 (21PG51-3) | SAMN39503752 | 17/02/2025 | |||||||||||||||||||
| 296 | SRX23311079 | SRP484717 | Illumina NovaSeq 6000 | SRS20187408 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025091 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_63 (21PG51-3) | SAMN39503751 | 17/02/2025 | |||||||||||||||||||
| 297 | SRX23311464 | SRP484717 | Illumina NovaSeq 6000 | SRS20187792 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025092 | Early blastocyst: E4.5 | ICM: PE | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_64 (21PG51-3) | SAMN39503750 | 17/02/2025 | |||||||||||||||||||
| 298 | SRX23311465 | SRP484717 | Illumina NovaSeq 6000 | SRS20187793 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025093 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_65 (21PG51-3) | SAMN39503749 | 17/02/2025 | |||||||||||||||||||
| 299 | SRX23311466 | SRP484717 | Illumina NovaSeq 6000 | SRS20187794 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025094 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_66 (21PG51-3) | SAMN39503748 | 17/02/2025 | |||||||||||||||||||
| 300 | SRX23311467 | SRP484717 | Illumina NovaSeq 6000 | SRS20187797 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025095 | Early blastocyst: E4.5 | ICM: ICM | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_67 (21PG51-3) | SAMN39503747 | 17/02/2025 | |||||||||||||||||||
| 301 | SRX23311468 | SRP484717 | Illumina NovaSeq 6000 | SRS20187795 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025096 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_68 (21PG51-3) | SAMN39503746 | 17/02/2025 | |||||||||||||||||||
| 302 | SRX23311469 | SRP484717 | Illumina NovaSeq 6000 | SRS20187796 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025097 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_69 (21PG51-3) | SAMN39503745 | 17/02/2025 | |||||||||||||||||||
| 303 | SRX23311470 | SRP484717 | Illumina NovaSeq 6000 | SRS20187798 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025098 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_7 (21PG50-2) | SAMN39503744 | 17/02/2025 | |||||||||||||||||||
| 304 | SRX23311471 | SRP484717 | Illumina NovaSeq 6000 | SRS20187799 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025099 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_70 (21PG51-3) | SAMN39503743 | 17/02/2025 | |||||||||||||||||||
| 305 | SRX23311129 | SRP484717 | Illumina NovaSeq 6000 | SRS20187457 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025100 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_71 (21PG51-3) | SAMN39503742 | 17/02/2025 | |||||||||||||||||||
| 306 | SRX23311130 | SRP484717 | Illumina NovaSeq 6000 | SRS20187458 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025101 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_72 (21PG51-3) | SAMN39503741 | 17/02/2025 | |||||||||||||||||||
| 307 | SRX23311131 | SRP484717 | Illumina NovaSeq 6000 | SRS20187459 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025102 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_1_73 (21PG51-3) | SAMN39503740 | 17/02/2025 | |||||||||||||||||||
| 308 | SRX23311132 | SRP484717 | Illumina NovaSeq 6000 | SRS20187461 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025103 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_74 (21PG76-1) | SAMN39503739 | 17/02/2025 | |||||||||||||||||||
| 309 | SRX23311133 | SRP484717 | Illumina NovaSeq 6000 | SRS20187460 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025104 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_75 (21PG76-1) | SAMN39503738 | 17/02/2025 | |||||||||||||||||||
| 310 | SRX23311134 | SRP484717 | Illumina NovaSeq 6000 | SRS20187462 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025105 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_76 (21PG76-1) | SAMN39503737 | 17/02/2025 | |||||||||||||||||||
| 314 | SRX23310901 | SRP484717 | Illumina NovaSeq 6000 | SRS20187229 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025109 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_1_8 (21PG50-2) | SAMN39503733 | 17/02/2025 | |||||||||||||||||||
| 315 | SRX23310902 | SRP484717 | Illumina NovaSeq 6000 | SRS20187230 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025110 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_80 (21PG76-2) | SAMN39503732 | 17/02/2025 | |||||||||||||||||||
| 323 | SRX23311082 | SRP484717 | Illumina NovaSeq 6000 | SRS20187410 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025118 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_88 (21PG76-2) | SAMN39503724 | 17/02/2025 | |||||||||||||||||||
| 324 | SRX23311083 | SRP484717 | Illumina NovaSeq 6000 | SRS20187412 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025119 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_89 (21PG76-2) | SAMN39503723 | 17/02/2025 | |||||||||||||||||||
| 325 | SRX23311084 | SRP484717 | Illumina NovaSeq 6000 | SRS20187413 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025120 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_1_9 (21PG39-1) | SAMN39503722 | 17/02/2025 | |||||||||||||||||||
| 326 | SRX23311085 | SRP484717 | Illumina NovaSeq 6000 | SRS20187414 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025121 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_90 (21PG76-2) | SAMN39503721 | 17/02/2025 | |||||||||||||||||||
| 329 | SRX23311472 | SRP484717 | Illumina NovaSeq 6000 | SRS20187800 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025124 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_93 (21PG76-2) | SAMN39503718 | 17/02/2025 | |||||||||||||||||||
| 330 | SRX23311473 | SRP484717 | Illumina NovaSeq 6000 | SRS20187803 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025125 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_94 (21PG76-2) | SAMN39503717 | 17/02/2025 | |||||||||||||||||||
| 332 | SRX23311475 | SRP484717 | Illumina NovaSeq 6000 | SRS20187804 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025127 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_96 (21PG76-2) | SAMN39503715 | 17/02/2025 | |||||||||||||||||||
| 333 | SRX23311476 | SRP484717 | Illumina NovaSeq 6000 | SRS20187802 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025128 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_97 (21PG55-2) | SAMN39503714 | 17/02/2025 | |||||||||||||||||||
| 334 | SRX23311477 | SRP484717 | Illumina NovaSeq 6000 | SRS20187805 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025129 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_98 (21PG55-2) | SAMN39503713 | 17/02/2025 | |||||||||||||||||||
| 335 | SRX23311478 | SRP484717 | Illumina NovaSeq 6000 | SRS20187806 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025130 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_1_99 (21PG55-2) | SAMN39503712 | 17/02/2025 | |||||||||||||||||||
| 336 | SRX23311479 | SRP484717 | Illumina NovaSeq 6000 | SRS20187808 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025131 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_2_1 (21PG50-3) | SAMN39503711 | 17/02/2025 | |||||||||||||||||||
| 337 | SRX23311137 | SRP484717 | Illumina NovaSeq 6000 | SRS20187463 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025132 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_10 (21PG77-1) | SAMN39503710 | 17/02/2025 | |||||||||||||||||||
| 338 | SRX23311138 | SRP484717 | Illumina NovaSeq 6000 | SRS20187466 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025133 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_100 (21PG55-3) | SAMN39503709 | 17/02/2025 | |||||||||||||||||||
| 339 | SRX23311139 | SRP484717 | Illumina NovaSeq 6000 | SRS20187467 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025134 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_101 (21PG55-3) | SAMN39503708 | 17/02/2025 | |||||||||||||||||||
| 340 | SRX23311140 | SRP484717 | Illumina NovaSeq 6000 | SRS20187469 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025135 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_102 (21PG55-3) | SAMN39503707 | 17/02/2025 | |||||||||||||||||||
| 341 | SRX23311141 | SRP484717 | Illumina NovaSeq 6000 | SRS20187470 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025136 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_103 (21PG55-3) | SAMN39503706 | 17/02/2025 | |||||||||||||||||||
| 342 | SRX23311142 | SRP484717 | Illumina NovaSeq 6000 | SRS20187468 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025137 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_104 (21PG55-3) | SAMN39503705 | 17/02/2025 | |||||||||||||||||||
| 343 | SRX23311143 | SRP484717 | Illumina NovaSeq 6000 | SRS20187472 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025138 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_105 (21PG55-3) | SAMN39503704 | 17/02/2025 | |||||||||||||||||||
| 344 | SRX23311144 | SRP484717 | Illumina NovaSeq 6000 | SRS20187471 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025139 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_106 (21PG55-3) | SAMN39503703 | 17/02/2025 | |||||||||||||||||||
| 345 | SRX23310908 | SRP484717 | Illumina NovaSeq 6000 | SRS20187237 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025140 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_107 (21PG55-3) | SAMN39503702 | 17/02/2025 | |||||||||||||||||||
| 346 | SRX23310909 | SRP484717 | Illumina NovaSeq 6000 | SRS20187236 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025141 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_108 (21PG55-3) | SAMN39503701 | 17/02/2025 | |||||||||||||||||||
| 347 | SRX23310910 | SRP484717 | Illumina NovaSeq 6000 | SRS20187238 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025142 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_109 (21PG55-3) | SAMN39503700 | 17/02/2025 | |||||||||||||||||||
| 348 | SRX23310911 | SRP484717 | Illumina NovaSeq 6000 | SRS20187239 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025143 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_11 (21PG77-1) | SAMN39503699 | 17/02/2025 | |||||||||||||||||||
| 349 | SRX23311312 | SRP484717 | Illumina NovaSeq 6000 | SRS20187640 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025144 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_110 (21PG55-3) | SAMN39503698 | 17/02/2025 | |||||||||||||||||||
| 350 | SRX23311313 | SRP484717 | Illumina NovaSeq 6000 | SRS20187641 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025145 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_111 (21PG55-3) | SAMN39503697 | 17/02/2025 | |||||||||||||||||||
| 351 | SRX23311314 | SRP484717 | Illumina NovaSeq 6000 | SRS20187643 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025146 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_112 (21PG55-3) | SAMN39503696 | 17/02/2025 | |||||||||||||||||||
| 353 | SRX23311175 | SRP484717 | Illumina NovaSeq 6000 | SRS20187504 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025148 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_114 (21PG55-3) | SAMN39503694 | 17/02/2025 | |||||||||||||||||||
| 354 | SRX23311176 | SRP484717 | Illumina NovaSeq 6000 | SRS20187503 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025149 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_115 (21PG55-3) | SAMN39503693 | 17/02/2025 | |||||||||||||||||||
| 355 | SRX23311177 | SRP484717 | Illumina NovaSeq 6000 | SRS20187505 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025150 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_116 (21PG49-1) | SAMN39503692 | 17/02/2025 | |||||||||||||||||||
| 356 | SRX23311178 | SRP484717 | Illumina NovaSeq 6000 | SRS20187506 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025151 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_117 (21PG49-1) | SAMN39503691 | 17/02/2025 | |||||||||||||||||||
| 357 | SRX23311179 | SRP484717 | Illumina NovaSeq 6000 | SRS20187507 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025152 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_118 (21PG49-1) | SAMN39503690 | 17/02/2025 | |||||||||||||||||||
| 358 | SRX23311180 | SRP484717 | Illumina NovaSeq 6000 | SRS20187508 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025153 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_119 (21PG49-1) | SAMN39503689 | 17/02/2025 | |||||||||||||||||||
| 359 | SRX23311181 | SRP484717 | Illumina NovaSeq 6000 | SRS20187509 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025154 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_12 (21PG77-1) | SAMN39503688 | 17/02/2025 | |||||||||||||||||||
| 360 | SRX23311182 | SRP484717 | Illumina NovaSeq 6000 | SRS20187510 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025155 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_120 (21PG49-1) | SAMN39503687 | 17/02/2025 | |||||||||||||||||||
| 361 | SRX23311480 | SRP484717 | Illumina NovaSeq 6000 | SRS20187807 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025156 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_121 (21PG49-1) | SAMN39503686 | 17/02/2025 | |||||||||||||||||||
| 362 | SRX23311481 | SRP484717 | Illumina NovaSeq 6000 | SRS20187809 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025157 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_122 (21PG49-1) | SAMN39503685 | 17/02/2025 | |||||||||||||||||||
| 364 | SRX23311483 | SRP484717 | Illumina NovaSeq 6000 | SRS20187811 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025159 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_124 (21PG49-1) | SAMN39503683 | 17/02/2025 | |||||||||||||||||||
| 365 | SRX23311484 | SRP484717 | Illumina NovaSeq 6000 | SRS20187812 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025160 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_125 (21PG49-1) | SAMN39503682 | 17/02/2025 | |||||||||||||||||||
| 366 | SRX23311485 | SRP484717 | Illumina NovaSeq 6000 | SRS20187813 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025161 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_126 (21PG49-1) | SAMN39503681 | 17/02/2025 | |||||||||||||||||||
| 367 | SRX23310912 | SRP484717 | Illumina NovaSeq 6000 | SRS20187240 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025162 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_127 (21PG49-1) | SAMN39503680 | 17/02/2025 | |||||||||||||||||||
| 368 | SRX23310913 | SRP484717 | Illumina NovaSeq 6000 | SRS20187241 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025163 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_128 (21PG49-1) | SAMN39503679 | 17/02/2025 | |||||||||||||||||||
| 370 | SRX23311146 | SRP484717 | Illumina NovaSeq 6000 | SRS20187474 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025165 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_13 (21PG77-1) | SAMN39503677 | 17/02/2025 | |||||||||||||||||||
| 372 | SRX23311148 | SRP484717 | Illumina NovaSeq 6000 | SRS20187475 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025167 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_131 (21PG49-2) | SAMN39503675 | 17/02/2025 | |||||||||||||||||||
| 373 | SRX23311149 | SRP484717 | Illumina NovaSeq 6000 | SRS20187480 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025168 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_132 (21PG49-2) | SAMN39503674 | 17/02/2025 | |||||||||||||||||||
| 374 | SRX23311150 | SRP484717 | Illumina NovaSeq 6000 | SRS20187479 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025169 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_133 (21PG49-2) | SAMN39503673 | 17/02/2025 | |||||||||||||||||||
| 375 | SRX23311151 | SRP484717 | Illumina NovaSeq 6000 | SRS20187477 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025170 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_134 (21PG49-2) | SAMN39503672 | 17/02/2025 | |||||||||||||||||||
| 376 | SRX23311152 | SRP484717 | Illumina NovaSeq 6000 | SRS20187478 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025171 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_135 (21PG49-2) | SAMN39503671 | 17/02/2025 | |||||||||||||||||||
| 377 | SRX23311316 | SRP484717 | Illumina NovaSeq 6000 | SRS20187642 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025172 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_136 (21PG49-2) | SAMN39503670 | 17/02/2025 | |||||||||||||||||||
| 378 | SRX23311317 | SRP484717 | Illumina NovaSeq 6000 | SRS20187645 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025173 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_137 (21PG49-2) | SAMN39503669 | 17/02/2025 | |||||||||||||||||||
| 379 | SRX23311318 | SRP484717 | Illumina NovaSeq 6000 | SRS20187646 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025174 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_138 (21PG49-2) | SAMN39503668 | 17/02/2025 | |||||||||||||||||||
| 380 | SRX23311319 | SRP484717 | Illumina NovaSeq 6000 | SRS20187648 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025175 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_139 (21PG49-2) | SAMN39503667 | 17/02/2025 | |||||||||||||||||||
| 381 | SRX23311320 | SRP484717 | Illumina NovaSeq 6000 | SRS20187647 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025176 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_14 (21PG77-1) | SAMN39503666 | 17/02/2025 | |||||||||||||||||||
| 382 | SRX23311321 | SRP484717 | Illumina NovaSeq 6000 | SRS20187649 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025177 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_140 (21PG49-2) | SAMN39503665 | 17/02/2025 | |||||||||||||||||||
| 383 | SRX23311322 | SRP484717 | Illumina NovaSeq 6000 | SRS20187650 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025178 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_141 (21PG53-2) | SAMN39503664 | 17/02/2025 | |||||||||||||||||||
| 384 | SRX23311323 | SRP484717 | Illumina NovaSeq 6000 | SRS20187652 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025179 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_142 (21PG53-2) | SAMN39503663 | 17/02/2025 | |||||||||||||||||||
| 385 | SRX23311183 | SRP484717 | Illumina NovaSeq 6000 | SRS20187511 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025180 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_143 (21PG53-2) | SAMN39503662 | 17/02/2025 | |||||||||||||||||||
| 386 | SRX23311184 | SRP484717 | Illumina NovaSeq 6000 | SRS20187512 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025181 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_144 (21PG53-2) | SAMN39503661 | 17/02/2025 | |||||||||||||||||||
| 387 | SRX23311185 | SRP484717 | Illumina NovaSeq 6000 | SRS20187514 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025182 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_145 (21PG53-2) | SAMN39503660 | 17/02/2025 | |||||||||||||||||||
| 388 | SRX23311186 | SRP484717 | Illumina NovaSeq 6000 | SRS20187513 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025183 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_146 (21PG53-2) | SAMN39503659 | 17/02/2025 | |||||||||||||||||||
| 389 | SRX23311187 | SRP484717 | Illumina NovaSeq 6000 | SRS20187518 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025184 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_147 (21PG53-2) | SAMN39503658 | 17/02/2025 | |||||||||||||||||||
| 390 | SRX23311188 | SRP484717 | Illumina NovaSeq 6000 | SRS20187515 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025185 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_148 (21PG53-2) | SAMN39503657 | 17/02/2025 | |||||||||||||||||||
| 391 | SRX23311189 | SRP484717 | Illumina NovaSeq 6000 | SRS20187516 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025186 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_149 (21PG53-2) | SAMN39503656 | 17/02/2025 | |||||||||||||||||||
| 392 | SRX23311190 | SRP484717 | Illumina NovaSeq 6000 | SRS20187519 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025187 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_15 (21PG77-1) | SAMN39503655 | 17/02/2025 | |||||||||||||||||||
| 393 | SRX23310914 | SRP484717 | Illumina NovaSeq 6000 | SRS20187242 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025188 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_150 (21PG53-2) | SAMN39503654 | 17/02/2025 | |||||||||||||||||||
| 394 | SRX23310915 | SRP484717 | Illumina NovaSeq 6000 | SRS20187243 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025189 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_151 (21PG53-2) | SAMN39503653 | 17/02/2025 | |||||||||||||||||||
| 395 | SRX23310916 | SRP484717 | Illumina NovaSeq 6000 | SRS20187244 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025190 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_152 (21PG53-2) | SAMN39503652 | 17/02/2025 | |||||||||||||||||||
| 396 | SRX23310917 | SRP484717 | Illumina NovaSeq 6000 | SRS20187245 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025191 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_153 (21PG53-2) | SAMN39503651 | 17/02/2025 | |||||||||||||||||||
| 397 | SRX23310918 | SRP484717 | Illumina NovaSeq 6000 | SRS20187246 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025192 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_154 (21PG53-2) | SAMN39503650 | 17/02/2025 | |||||||||||||||||||
| 398 | SRX23310919 | SRP484717 | Illumina NovaSeq 6000 | SRS20187247 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025193 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_155 (21PG53-2) | SAMN39503649 | 17/02/2025 | |||||||||||||||||||
| 399 | SRX23310920 | SRP484717 | Illumina NovaSeq 6000 | SRS20187248 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025194 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_156 (21PG53-2) | SAMN39503648 | 17/02/2025 | |||||||||||||||||||
| 400 | SRX23310921 | SRP484717 | Illumina NovaSeq 6000 | SRS20187249 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025195 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_157 (21PG53-2) | SAMN39503647 | 17/02/2025 | |||||||||||||||||||
| 401 | SRX23311153 | SRP484717 | Illumina NovaSeq 6000 | SRS20187481 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025196 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_158 (21PG53-2) | SAMN39503646 | 17/02/2025 | |||||||||||||||||||
| 402 | SRX23311154 | SRP484717 | Illumina NovaSeq 6000 | SRS20187482 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025197 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_159 (21PG53-2) | SAMN39503645 | 17/02/2025 | |||||||||||||||||||
| 403 | SRX23311155 | SRP484717 | Illumina NovaSeq 6000 | SRS20187483 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025198 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_16 (21PG77-1) | SAMN39503644 | 17/02/2025 | |||||||||||||||||||
| 404 | SRX23311156 | SRP484717 | Illumina NovaSeq 6000 | SRS20187484 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025199 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_160 (21PG53-2) | SAMN39503643 | 17/02/2025 | |||||||||||||||||||
| 405 | SRX23311157 | SRP484717 | Illumina NovaSeq 6000 | SRS20187485 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025200 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_161 (21PG53-2) | SAMN39503642 | 17/02/2025 | |||||||||||||||||||
| 406 | SRX23311158 | SRP484717 | Illumina NovaSeq 6000 | SRS20187486 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025201 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_162 (21PG53-2) | SAMN39503641 | 17/02/2025 | |||||||||||||||||||
| 407 | SRX23311159 | SRP484717 | Illumina NovaSeq 6000 | SRS20187487 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025202 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_163 (21PG53-2) | SAMN39503640 | 17/02/2025 | |||||||||||||||||||
| 408 | SRX23311160 | SRP484717 | Illumina NovaSeq 6000 | SRS20187488 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025203 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_164 (21PG53-2) | SAMN39503639 | 17/02/2025 | |||||||||||||||||||
| 409 | SRX23311324 | SRP484717 | Illumina NovaSeq 6000 | SRS20187651 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025204 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_165 (21PG53-2) | SAMN39503638 | 17/02/2025 | |||||||||||||||||||
| 410 | SRX23311325 | SRP484717 | Illumina NovaSeq 6000 | SRS20187653 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025205 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_166 (21PG53-2) | SAMN39503637 | 17/02/2025 | |||||||||||||||||||
| 411 | SRX23311326 | SRP484717 | Illumina NovaSeq 6000 | SRS20187655 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025206 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_167 (21PG53-2) | SAMN39503636 | 17/02/2025 | |||||||||||||||||||
| 412 | SRX23311327 | SRP484717 | Illumina NovaSeq 6000 | SRS20187654 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025207 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_168 (21PG32-2) | SAMN39503635 | 17/02/2025 | |||||||||||||||||||
| 413 | SRX23311328 | SRP484717 | Illumina NovaSeq 6000 | SRS20187661 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025208 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_169 (21PG32-2) | SAMN39503634 | 17/02/2025 | |||||||||||||||||||
| 414 | SRX23311329 | SRP484717 | Illumina NovaSeq 6000 | SRS20187662 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025209 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_17 (21PG77-1) | SAMN39503633 | 17/02/2025 | |||||||||||||||||||
| 415 | SRX23311330 | SRP484717 | Illumina NovaSeq 6000 | SRS20187656 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025210 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_170 (21PG32-2) | SAMN39503632 | 17/02/2025 | |||||||||||||||||||
| 416 | SRX23311331 | SRP484717 | Illumina NovaSeq 6000 | SRS20187659 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025211 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_171 (21PG32-2) | SAMN39503631 | 17/02/2025 | |||||||||||||||||||
| 417 | SRX23311191 | SRP484717 | Illumina NovaSeq 6000 | SRS20187517 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025212 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_172 (21PG32-2) | SAMN39503630 | 17/02/2025 | |||||||||||||||||||
| 418 | SRX23311192 | SRP484717 | Illumina NovaSeq 6000 | SRS20187520 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025213 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_173 (21PG32-2) | SAMN39503629 | 17/02/2025 | |||||||||||||||||||
| 419 | SRX23311193 | SRP484717 | Illumina NovaSeq 6000 | SRS20187521 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025214 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_174 (21PG32-2) | SAMN39503628 | 17/02/2025 | |||||||||||||||||||
| 420 | SRX23311194 | SRP484717 | Illumina NovaSeq 6000 | SRS20187522 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025215 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_175 (21PG32-2) | SAMN39503627 | 17/02/2025 | |||||||||||||||||||
| 421 | SRX23311195 | SRP484717 | Illumina NovaSeq 6000 | SRS20187525 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025216 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_176 (21PG32-2) | SAMN39503626 | 17/02/2025 | |||||||||||||||||||
| 422 | SRX23311196 | SRP484717 | Illumina NovaSeq 6000 | SRS20187524 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025217 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_177 (21PG32-2) | SAMN39503625 | 17/02/2025 | |||||||||||||||||||
| 423 | SRX23311197 | SRP484717 | Illumina NovaSeq 6000 | SRS20187523 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025218 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_178 (21PG32-2) | SAMN39503624 | 17/02/2025 | |||||||||||||||||||
| 424 | SRX23311198 | SRP484717 | Illumina NovaSeq 6000 | SRS20187527 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025219 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_179 (21PG32-2) | SAMN39503623 | 17/02/2025 | |||||||||||||||||||
| 425 | SRX23310922 | SRP484717 | Illumina NovaSeq 6000 | SRS20187250 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025220 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_18 (21PG77-1) | SAMN39503622 | 17/02/2025 | |||||||||||||||||||
| 426 | SRX23310923 | SRP484717 | Illumina NovaSeq 6000 | SRS20187252 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025221 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_180 (21PG32-2) | SAMN39503621 | 17/02/2025 | |||||||||||||||||||
| 427 | SRX23310924 | SRP484717 | Illumina NovaSeq 6000 | SRS20187253 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025222 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_19 (21PG77-1) | SAMN39503620 | 17/02/2025 | |||||||||||||||||||
| 428 | SRX23310925 | SRP484717 | Illumina NovaSeq 6000 | SRS20187251 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025223 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_191 (21PG49-1) | SAMN39503619 | 17/02/2025 | |||||||||||||||||||
| 429 | SRX23310926 | SRP484717 | Illumina NovaSeq 6000 | SRS20187254 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025224 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_192 (21PG49-1) | SAMN39503618 | 17/02/2025 | |||||||||||||||||||
| 430 | SRX23310927 | SRP484717 | Illumina NovaSeq 6000 | SRS20187255 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025225 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_193 (21PG57-2) | SAMN39503617 | 17/02/2025 | |||||||||||||||||||
| 431 | SRX23310928 | SRP484717 | Illumina NovaSeq 6000 | SRS20187256 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025226 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_194 (21PG57-2) | SAMN39503616 | 17/02/2025 | |||||||||||||||||||
| 432 | SRX23310929 | SRP484717 | Illumina NovaSeq 6000 | SRS20187258 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025227 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_195 (21PG57-2) | SAMN39503615 | 17/02/2025 | |||||||||||||||||||
| 433 | SRX23311161 | SRP484717 | Illumina NovaSeq 6000 | SRS20187490 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025228 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_196 (21PG57-2) | SAMN39503614 | 17/02/2025 | |||||||||||||||||||
| 435 | SRX23311163 | SRP484717 | Illumina NovaSeq 6000 | SRS20187492 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025230 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_198 (21PG57-2) | SAMN39503612 | 17/02/2025 | |||||||||||||||||||
| 436 | SRX23311164 | SRP484717 | Illumina NovaSeq 6000 | SRS20187494 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025231 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_199 (21PG57-2) | SAMN39503611 | 17/02/2025 | |||||||||||||||||||
| 437 | SRX23311165 | SRP484717 | Illumina NovaSeq 6000 | SRS20187493 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025232 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_2_2 (21PG50-3) | SAMN39503610 | 17/02/2025 | |||||||||||||||||||
| 438 | SRX23311166 | SRP484717 | Illumina NovaSeq 6000 | SRS20187491 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025233 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_20 (21PG77-1) | SAMN39503609 | 17/02/2025 | |||||||||||||||||||
| 439 | SRX23311167 | SRP484717 | Illumina NovaSeq 6000 | SRS20187495 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025234 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_200 (21PG57-2) | SAMN39503608 | 17/02/2025 | |||||||||||||||||||
| 441 | SRX23311332 | SRP484717 | Illumina NovaSeq 6000 | SRS20187657 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025236 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_202 (21PG57-2) | SAMN39503606 | 17/02/2025 | |||||||||||||||||||
| 442 | SRX23311333 | SRP484717 | Illumina NovaSeq 6000 | SRS20187658 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025237 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_203 (21PG57-2) | SAMN39503605 | 17/02/2025 | |||||||||||||||||||
| 444 | SRX23311335 | SRP484717 | Illumina NovaSeq 6000 | SRS20187663 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025239 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_205 (21PG57-2) | SAMN39503603 | 17/02/2025 | |||||||||||||||||||
| 445 | SRX23311336 | SRP484717 | Illumina NovaSeq 6000 | SRS20187664 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025240 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_206 (21PG57-2) | SAMN39503602 | 17/02/2025 | |||||||||||||||||||
| 446 | SRX23311337 | SRP484717 | Illumina NovaSeq 6000 | SRS20187665 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025241 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_207 (21PG57-2) | SAMN39503601 | 17/02/2025 | |||||||||||||||||||
| 447 | SRX23311338 | SRP484717 | Illumina NovaSeq 6000 | SRS20187666 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025242 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_208 (21PG57-2) | SAMN39503600 | 17/02/2025 | |||||||||||||||||||
| 448 | SRX23311339 | SRP484717 | Illumina NovaSeq 6000 | SRS20187667 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025243 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_209 (21PG75-4) | SAMN39503599 | 17/02/2025 | |||||||||||||||||||
| 449 | SRX23311199 | SRP484717 | Illumina NovaSeq 6000 | SRS20187526 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025244 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_21 (21PG77-1) | SAMN39503598 | 17/02/2025 | |||||||||||||||||||
| 450 | SRX23311200 | SRP484717 | Illumina NovaSeq 6000 | SRS20187528 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025245 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_210 (21PG75-4) | SAMN39503597 | 17/02/2025 | |||||||||||||||||||
| 451 | SRX23311201 | SRP484717 | Illumina NovaSeq 6000 | SRS20187530 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025246 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_211 (21PG75-4) | SAMN39503596 | 17/02/2025 | |||||||||||||||||||
| 452 | SRX23311202 | SRP484717 | Illumina NovaSeq 6000 | SRS20187532 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025247 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_212 (21PG75-4) | SAMN39503595 | 17/02/2025 | |||||||||||||||||||
| 453 | SRX23311203 | SRP484717 | Illumina NovaSeq 6000 | SRS20187531 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025248 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_213 (21PG75-4) | SAMN39503594 | 17/02/2025 | |||||||||||||||||||
| 454 | SRX23311204 | SRP484717 | Illumina NovaSeq 6000 | SRS20187529 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025249 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_214 (21PG75-4) | SAMN39503593 | 17/02/2025 | |||||||||||||||||||
| 455 | SRX23311205 | SRP484717 | Illumina NovaSeq 6000 | SRS20187534 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025250 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_215 (21PG75-4) | SAMN39503592 | 17/02/2025 | |||||||||||||||||||
| 456 | SRX23311206 | SRP484717 | Illumina NovaSeq 6000 | SRS20187533 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025251 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_216 (21PG75-4) | SAMN39503591 | 17/02/2025 | |||||||||||||||||||
| 457 | SRX23311169 | SRP484717 | Illumina NovaSeq 6000 | SRS20187497 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025252 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_217 (21PG75-4) | SAMN39503590 | 17/02/2025 | |||||||||||||||||||
| 458 | SRX23311170 | SRP484717 | Illumina NovaSeq 6000 | SRS20187498 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025253 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_218 (21PG75-4) | SAMN39503589 | 17/02/2025 | |||||||||||||||||||
| 459 | SRX23311171 | SRP484717 | Illumina NovaSeq 6000 | SRS20187500 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025254 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_219 (21PG75-4) | SAMN39503588 | 17/02/2025 | |||||||||||||||||||
| 460 | SRX23311172 | SRP484717 | Illumina NovaSeq 6000 | SRS20187499 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025255 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_22 (21PG77-1) | SAMN39503587 | 17/02/2025 | |||||||||||||||||||
| 461 | SRX23311260 | SRP484717 | Illumina NovaSeq 6000 | SRS20187592 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025256 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_220 (21PG75-4) | SAMN39503586 | 17/02/2025 | |||||||||||||||||||
| 462 | SRX23311261 | SRP484717 | Illumina NovaSeq 6000 | SRS20187587 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025257 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_221 (21PG75-4) | SAMN39503585 | 17/02/2025 | |||||||||||||||||||
| 463 | SRX23311262 | SRP484717 | Illumina NovaSeq 6000 | SRS20187588 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025258 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_222 (21PG75-4) | SAMN39503584 | 17/02/2025 | |||||||||||||||||||
| 464 | SRX23311263 | SRP484717 | Illumina NovaSeq 6000 | SRS20187598 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025259 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_223 (21PG75-4) | SAMN39503583 | 17/02/2025 | |||||||||||||||||||
| 466 | SRX23311341 | SRP484717 | Illumina NovaSeq 6000 | SRS20187670 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025261 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_225 (21PG75-4) | SAMN39503581 | 17/02/2025 | |||||||||||||||||||
| 467 | SRX23311342 | SRP484717 | Illumina NovaSeq 6000 | SRS20187669 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025262 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_226 (21PG75-4) | SAMN39503580 | 17/02/2025 | |||||||||||||||||||
| 468 | SRX23311343 | SRP484717 | Illumina NovaSeq 6000 | SRS20187671 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025263 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_227 (21PG75-4) | SAMN39503579 | 17/02/2025 | |||||||||||||||||||
| 470 | SRX23311345 | SRP484717 | Illumina NovaSeq 6000 | SRS20187673 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025265 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_23 (21PG77-1) | SAMN39503577 | 17/02/2025 | |||||||||||||||||||
| 471 | SRX23311346 | SRP484717 | Illumina NovaSeq 6000 | SRS20187675 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025266 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_24 (21PG77-1) | SAMN39503576 | 17/02/2025 | |||||||||||||||||||
| 472 | SRX23311347 | SRP484717 | Illumina NovaSeq 6000 | SRS20187676 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025267 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_25 (21PG40-2) | SAMN39503575 | 17/02/2025 | |||||||||||||||||||
| 473 | SRX23311207 | SRP484717 | Illumina NovaSeq 6000 | SRS20187538 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025268 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_26 (21PG40-2) | SAMN39503574 | 17/02/2025 | |||||||||||||||||||
| 477 | SRX23311211 | SRP484717 | Illumina NovaSeq 6000 | SRS20187536 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025272 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_269 (21PG76-2) | SAMN39503570 | 17/02/2025 | |||||||||||||||||||
| 478 | SRX23311212 | SRP484717 | Illumina NovaSeq 6000 | SRS20187540 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025273 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_27 (21PG40-2) | SAMN39503569 | 17/02/2025 | |||||||||||||||||||
| 479 | SRX23311213 | SRP484717 | Illumina NovaSeq 6000 | SRS20187541 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025274 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_270 (21PG76-2) | SAMN39503568 | 17/02/2025 | |||||||||||||||||||
| 480 | SRX23311214 | SRP484717 | Illumina NovaSeq 6000 | SRS20187544 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025275 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_271 (21PG76-2) | SAMN39503567 | 17/02/2025 | |||||||||||||||||||
| 486 | SRX23310935 | SRP484717 | Illumina NovaSeq 6000 | SRS20187263 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025281 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_277 (21PG76-2) | SAMN39503561 | 17/02/2025 | |||||||||||||||||||
| 489 | SRX23311264 | SRP484717 | Illumina NovaSeq 6000 | SRS20187589 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025284 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_28 (21PG40-2) | SAMN39503558 | 17/02/2025 | |||||||||||||||||||
| 491 | SRX23311266 | SRP484717 | Illumina NovaSeq 6000 | SRS20187594 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025286 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_281 (21PG45-2) | SAMN39503556 | 17/02/2025 | |||||||||||||||||||
| 497 | SRX23311348 | SRP484717 | Illumina NovaSeq 6000 | SRS20187674 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025292 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_287 (21PG45-2) | SAMN39503550 | 17/02/2025 | |||||||||||||||||||
| 499 | SRX23311350 | SRP484717 | Illumina NovaSeq 6000 | SRS20187677 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025294 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_289 (21PG35-1) | SAMN39503548 | 17/02/2025 | |||||||||||||||||||
| 500 | SRX23311351 | SRP484717 | Illumina NovaSeq 6000 | SRS20187678 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025295 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_29 (21PG40-2) | SAMN39503547 | 17/02/2025 | |||||||||||||||||||
| 501 | SRX23311352 | SRP484717 | Illumina NovaSeq 6000 | SRS20187680 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025296 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_290 (21PG35-1) | SAMN39503546 | 17/02/2025 | |||||||||||||||||||
| 502 | SRX23311353 | SRP484717 | Illumina NovaSeq 6000 | SRS20187681 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025297 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_291 (21PG35-1) | SAMN39503545 | 17/02/2025 | |||||||||||||||||||
| 506 | SRX23311216 | SRP484717 | Illumina NovaSeq 6000 | SRS20187542 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025301 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | 10141 | Smart-Seq2 | Full-length | JC_2_295 (21PG35-1) | SAMN39503541 | 17/02/2025 | |||||||||||||||||||
| 507 | SRX23311217 | SRP484717 | Illumina NovaSeq 6000 | SRS20187543 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025302 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_296 (21PG65-1) | SAMN39503540 | 17/02/2025 | |||||||||||||||||||
| 508 | SRX23311218 | SRP484717 | Illumina NovaSeq 6000 | SRS20187546 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025303 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_297 (21PG65-1) | SAMN39503539 | 17/02/2025 | |||||||||||||||||||
| 509 | SRX23311219 | SRP484717 | Illumina NovaSeq 6000 | SRS20187547 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025304 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_298 (21PG65-1) | SAMN39503538 | 17/02/2025 | |||||||||||||||||||
| 510 | SRX23311220 | SRP484717 | Illumina NovaSeq 6000 | SRS20187548 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025305 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_299 (21PG65-1) | SAMN39503537 | 17/02/2025 | |||||||||||||||||||
| 511 | SRX23311221 | SRP484717 | Illumina NovaSeq 6000 | SRS20187549 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025306 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_2_3 (21PG50-3) | SAMN39503536 | 17/02/2025 | |||||||||||||||||||
| 512 | SRX23311222 | SRP484717 | Illumina NovaSeq 6000 | SRS20187551 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025307 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_30 (21PG40-2) | SAMN39503535 | 17/02/2025 | |||||||||||||||||||
| 513 | SRX23310938 | SRP484717 | Illumina NovaSeq 6000 | SRS20187265 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025308 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_300 (21PG65-1) | SAMN39503534 | 17/02/2025 | |||||||||||||||||||
| 514 | SRX23310939 | SRP484717 | Illumina NovaSeq 6000 | SRS20187267 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025309 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_301 (21PG65-1) | SAMN39503533 | 17/02/2025 | |||||||||||||||||||
| 515 | SRX23310940 | SRP484717 | Illumina NovaSeq 6000 | SRS20187269 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025310 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_302 (21PG65-1) | SAMN39503532 | 17/02/2025 | |||||||||||||||||||
| 516 | SRX23310941 | SRP484717 | Illumina NovaSeq 6000 | SRS20187268 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025311 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_303 (21PG65-1) | SAMN39503531 | 17/02/2025 | |||||||||||||||||||
| 517 | SRX23310942 | SRP484717 | Illumina NovaSeq 6000 | SRS20187270 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025312 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_304 (21PG65-1) | SAMN39503530 | 17/02/2025 | |||||||||||||||||||
| 518 | SRX23310943 | SRP484717 | Illumina NovaSeq 6000 | SRS20187271 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025313 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_305 (21PG65-1) | SAMN39503529 | 17/02/2025 | |||||||||||||||||||
| 519 | SRX23310944 | SRP484717 | Illumina NovaSeq 6000 | SRS20187272 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025314 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_306 (21PG65-1) | SAMN39503528 | 17/02/2025 | |||||||||||||||||||
| 520 | SRX23310945 | SRP484717 | Illumina NovaSeq 6000 | SRS20187273 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025315 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_307 (21PG65-1) | SAMN39503527 | 17/02/2025 | |||||||||||||||||||
| 521 | SRX23311272 | SRP484717 | Illumina NovaSeq 6000 | SRS20187602 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025316 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_308 (21PG65-1) | SAMN39503526 | 17/02/2025 | |||||||||||||||||||
| 522 | SRX23311273 | SRP484717 | Illumina NovaSeq 6000 | SRS20187601 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025317 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_309 (21PG65-1) | SAMN39503525 | 17/02/2025 | |||||||||||||||||||
| 523 | SRX23311274 | SRP484717 | Illumina NovaSeq 6000 | SRS20187600 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025318 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_31 (21PG40-2) | SAMN39503524 | 17/02/2025 | |||||||||||||||||||
| 524 | SRX23311275 | SRP484717 | Illumina NovaSeq 6000 | SRS20187603 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025319 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_310 (21PG65-1) | SAMN39503523 | 17/02/2025 | |||||||||||||||||||
| 525 | SRX23311276 | SRP484717 | Illumina NovaSeq 6000 | SRS20187604 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025320 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_311 (21PG65-1) | SAMN39503522 | 17/02/2025 | |||||||||||||||||||
| 526 | SRX23311277 | SRP484717 | Illumina NovaSeq 6000 | SRS20187605 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025321 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_312 (21PG65-1) | SAMN39503521 | 17/02/2025 | |||||||||||||||||||
| 527 | SRX23311278 | SRP484717 | Illumina NovaSeq 6000 | SRS20187606 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025322 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_313 (21PG65-1) | SAMN39503520 | 17/02/2025 | |||||||||||||||||||
| 528 | SRX23311279 | SRP484717 | Illumina NovaSeq 6000 | SRS20187607 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025323 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_314 (21PG65-2) | SAMN39503519 | 17/02/2025 | |||||||||||||||||||
| 529 | SRX23311356 | SRP484717 | Illumina NovaSeq 6000 | SRS20187682 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025324 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_315 (21PG65-2) | SAMN39503518 | 17/02/2025 | |||||||||||||||||||
| 530 | SRX23311357 | SRP484717 | Illumina NovaSeq 6000 | SRS20187686 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025325 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_316 (21PG65-2) | SAMN39503517 | 17/02/2025 | |||||||||||||||||||
| 531 | SRX23311358 | SRP484717 | Illumina NovaSeq 6000 | SRS20187685 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025326 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_317 (21PG65-2) | SAMN39503516 | 17/02/2025 | |||||||||||||||||||
| 532 | SRX23311359 | SRP484717 | Illumina NovaSeq 6000 | SRS20187687 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025327 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_318 (21PG65-2) | SAMN39503515 | 17/02/2025 | |||||||||||||||||||
| 533 | SRX23311360 | SRP484717 | Illumina NovaSeq 6000 | SRS20187688 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025328 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_319 (21PG65-2) | SAMN39503514 | 17/02/2025 | |||||||||||||||||||
| 534 | SRX23311361 | SRP484717 | Illumina NovaSeq 6000 | SRS20187690 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025329 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_32 (21PG40-2) | SAMN39503513 | 17/02/2025 | |||||||||||||||||||
| 535 | SRX23311362 | SRP484717 | Illumina NovaSeq 6000 | SRS20187689 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025330 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_320 (21PG65-2) | SAMN39503512 | 17/02/2025 | |||||||||||||||||||
| 536 | SRX23311363 | SRP484717 | Illumina NovaSeq 6000 | SRS20187691 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025331 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_321 (21PG65-2) | SAMN39503511 | 17/02/2025 | |||||||||||||||||||
| 537 | SRX23311223 | SRP484717 | Illumina NovaSeq 6000 | SRS20187550 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025332 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | 10141 | Smart-Seq2 | Full-length | JC_2_322 (21PG65-2) | SAMN39503510 | 17/02/2025 | |||||||||||||||||||
| 538 | SRX23311224 | SRP484717 | Illumina NovaSeq 6000 | SRS20187553 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025333 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_323 (20PG3-1) | SAMN39503509 | 17/02/2025 | |||||||||||||||||||
| 545 | SRX23310946 | SRP484717 | Illumina NovaSeq 6000 | SRS20187274 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025340 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_33 (21PG40-2) | SAMN39503502 | 17/02/2025 | |||||||||||||||||||
| 546 | SRX23310947 | SRP484717 | Illumina NovaSeq 6000 | SRS20187275 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025341 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_330 (20PG3-1) | SAMN39503501 | 17/02/2025 | |||||||||||||||||||
| 547 | SRX23310948 | SRP484717 | Illumina NovaSeq 6000 | SRS20187276 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025342 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_331 (20PG3-1) | SAMN39503500 | 17/02/2025 | |||||||||||||||||||
| 552 | SRX23310953 | SRP484717 | Illumina NovaSeq 6000 | SRS20187281 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025347 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_336 (20PG3-1) | SAMN39503495 | 17/02/2025 | |||||||||||||||||||
| 555 | SRX23311282 | SRP484717 | Illumina NovaSeq 6000 | SRS20187609 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025350 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_339 (20PG3-1) | SAMN39503492 | 17/02/2025 | |||||||||||||||||||
| 556 | SRX23311283 | SRP484717 | Illumina NovaSeq 6000 | SRS20187611 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025351 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_34 (21PG40-2) | SAMN39503491 | 17/02/2025 | |||||||||||||||||||
| 557 | SRX23311284 | SRP484717 | Illumina NovaSeq 6000 | SRS20187612 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025352 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_340 (20PG3-1) | SAMN39503490 | 17/02/2025 | |||||||||||||||||||
| 559 | SRX23311286 | SRP484717 | Illumina NovaSeq 6000 | SRS20187614 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025354 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_342 (20PG3-1) | SAMN39503488 | 17/02/2025 | |||||||||||||||||||
| 563 | SRX23311366 | SRP484717 | Illumina NovaSeq 6000 | SRS20187693 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025358 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_346 (20PG4-3) | SAMN39503484 | 17/02/2025 | |||||||||||||||||||
| 564 | SRX23311367 | SRP484717 | Illumina NovaSeq 6000 | SRS20187695 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025359 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_347 (20PG4-3) | SAMN39503483 | 17/02/2025 | |||||||||||||||||||
| 565 | SRX23311368 | SRP484717 | Illumina NovaSeq 6000 | SRS20187697 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025360 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_348 (20PG4-3) | SAMN39503482 | 17/02/2025 | |||||||||||||||||||
| 566 | SRX23311369 | SRP484717 | Illumina NovaSeq 6000 | SRS20187696 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025361 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_349 (20PG4-3) | SAMN39503481 | 17/02/2025 | |||||||||||||||||||
| 567 | SRX23311370 | SRP484717 | Illumina NovaSeq 6000 | SRS20187700 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025362 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_35 (21PG40-2) | SAMN39503480 | 17/02/2025 | |||||||||||||||||||
| 568 | SRX23311371 | SRP484717 | Illumina NovaSeq 6000 | SRS20187702 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025363 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_350 (20PG4-3) | SAMN39503479 | 17/02/2025 | |||||||||||||||||||
| 569 | SRX23311231 | SRP484717 | Illumina NovaSeq 6000 | SRS20187560 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025364 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_351 (20PG4-3) | SAMN39503478 | 17/02/2025 | |||||||||||||||||||
| 570 | SRX23311232 | SRP484717 | Illumina NovaSeq 6000 | SRS20187566 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025365 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_352 (20PG4-3) | SAMN39503477 | 17/02/2025 | |||||||||||||||||||
| 571 | SRX23311233 | SRP484717 | Illumina NovaSeq 6000 | SRS20187559 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025366 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_353 (20PG4-3) | SAMN39503476 | 17/02/2025 | |||||||||||||||||||
| 572 | SRX23311234 | SRP484717 | Illumina NovaSeq 6000 | SRS20187561 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025367 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_354 (20PG4-3) | SAMN39503475 | 17/02/2025 | |||||||||||||||||||
| 573 | SRX23311235 | SRP484717 | Illumina NovaSeq 6000 | SRS20187562 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025368 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_355 (20PG4-3) | SAMN39503474 | 17/02/2025 | |||||||||||||||||||
| 574 | SRX23311236 | SRP484717 | Illumina NovaSeq 6000 | SRS20187567 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025369 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_356 (20PG4-3) | SAMN39503473 | 17/02/2025 | |||||||||||||||||||
| 575 | SRX23311237 | SRP484717 | Illumina NovaSeq 6000 | SRS20187563 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025370 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_357 (20PG4-3) | SAMN39503472 | 17/02/2025 | |||||||||||||||||||
| 576 | SRX23311238 | SRP484717 | Illumina NovaSeq 6000 | SRS20187564 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025371 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | 10141 | Smart-Seq2 | Full-length | JC_2_358 (20PG4-3) | SAMN39503471 | 17/02/2025 | |||||||||||||||||||
| 577 | SRX23310954 | SRP484717 | Illumina NovaSeq 6000 | SRS20187282 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025372 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_359 (21PG33-2) | SAMN39503470 | 17/02/2025 | |||||||||||||||||||
| 578 | SRX23310955 | SRP484717 | Illumina NovaSeq 6000 | SRS20187285 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025373 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_36 (21PG40-2) | SAMN39503469 | 17/02/2025 | |||||||||||||||||||
| 579 | SRX23310956 | SRP484717 | Illumina NovaSeq 6000 | SRS20187283 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025374 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_360 (21PG33-2) | SAMN39503468 | 17/02/2025 | |||||||||||||||||||
| 580 | SRX23310957 | SRP484717 | Illumina NovaSeq 6000 | SRS20187284 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025375 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_361 (21PG33-2) | SAMN39503467 | 17/02/2025 | |||||||||||||||||||
| 581 | SRX23310958 | SRP484717 | Illumina NovaSeq 6000 | SRS20187286 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025376 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_362 (21PG33-2) | SAMN39503466 | 17/02/2025 | |||||||||||||||||||
| 582 | SRX23310959 | SRP484717 | Illumina NovaSeq 6000 | SRS20187288 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025377 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_363 (21PG33-2) | SAMN39503465 | 17/02/2025 | |||||||||||||||||||
| 583 | SRX23310960 | SRP484717 | Illumina NovaSeq 6000 | SRS20187287 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025378 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_364 (21PG33-2) | SAMN39503464 | 17/02/2025 | |||||||||||||||||||
| 584 | SRX23310961 | SRP484717 | Illumina NovaSeq 6000 | SRS20187289 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025379 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_365 (21PG33-2) | SAMN39503463 | 17/02/2025 | |||||||||||||||||||
| 585 | SRX23311288 | SRP484717 | Illumina NovaSeq 6000 | SRS20187615 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025380 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_366 (21PG33-2) | SAMN39503462 | 17/02/2025 | |||||||||||||||||||
| 588 | SRX23311291 | SRP484717 | Illumina NovaSeq 6000 | SRS20187619 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025383 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_369 (21PG33-2) | SAMN39503459 | 17/02/2025 | |||||||||||||||||||
| 589 | SRX23311292 | SRP484717 | Illumina NovaSeq 6000 | SRS20187620 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025384 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_37 (21PG40-2) | SAMN39503458 | 17/02/2025 | |||||||||||||||||||
| 590 | SRX23311293 | SRP484717 | Illumina NovaSeq 6000 | SRS20187621 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025385 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_370 (21PG33-2) | SAMN39503457 | 17/02/2025 | |||||||||||||||||||
| 591 | SRX23311294 | SRP484717 | Illumina NovaSeq 6000 | SRS20187626 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025386 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_371 (21PG33-2) | SAMN39503456 | 17/02/2025 | |||||||||||||||||||
| 592 | SRX23311295 | SRP484717 | Illumina NovaSeq 6000 | SRS20187623 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025387 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_372 (21PG33-2) | SAMN39503455 | 17/02/2025 | |||||||||||||||||||
| 594 | SRX23311373 | SRP484717 | Illumina NovaSeq 6000 | SRS20187699 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025389 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | 10141 | Smart-Seq2 | Full-length | JC_2_39 (21PG40-2) | SAMN39503453 | 17/02/2025 | |||||||||||||||||||
| 595 | SRX23311374 | SRP484717 | Illumina NovaSeq 6000 | SRS20187701 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025390 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_2_4 (21PG50-3) | SAMN39503452 | 17/02/2025 | |||||||||||||||||||
| 597 | SRX23311376 | SRP484717 | Illumina NovaSeq 6000 | SRS20187704 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025392 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_41 (21PG33-1) | SAMN39503450 | 17/02/2025 | |||||||||||||||||||
| 598 | SRX23311377 | SRP484717 | Illumina NovaSeq 6000 | SRS20187705 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025393 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_42 (21PG33-1) | SAMN39503449 | 17/02/2025 | |||||||||||||||||||
| 599 | SRX23311378 | SRP484717 | Illumina NovaSeq 6000 | SRS20187706 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025394 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_43 (21PG33-1) | SAMN39503448 | 17/02/2025 | |||||||||||||||||||
| 600 | SRX23311379 | SRP484717 | Illumina NovaSeq 6000 | SRS20187709 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025395 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_44 (21PG33-1) | SAMN39503447 | 17/02/2025 | |||||||||||||||||||
| 601 | SRX23311239 | SRP484717 | Illumina NovaSeq 6000 | SRS20187573 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025396 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_45 (21PG33-1) | SAMN39503446 | 17/02/2025 | |||||||||||||||||||
| 603 | SRX23311241 | SRP484717 | Illumina NovaSeq 6000 | SRS20187568 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025398 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_47 (21PG33-1) | SAMN39503444 | 17/02/2025 | |||||||||||||||||||
| 604 | SRX23311242 | SRP484717 | Illumina NovaSeq 6000 | SRS20187569 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025399 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_48 (21PG33-1) | SAMN39503443 | 17/02/2025 | |||||||||||||||||||
| 605 | SRX23311243 | SRP484717 | Illumina NovaSeq 6000 | SRS20187571 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025400 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_49 (21PG33-1) | SAMN39503442 | 17/02/2025 | |||||||||||||||||||
| 606 | SRX23311244 | SRP484717 | Illumina NovaSeq 6000 | SRS20187570 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025401 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_2_5 (21PG50-3) | SAMN39503441 | 17/02/2025 | |||||||||||||||||||
| 607 | SRX23311245 | SRP484717 | Illumina NovaSeq 6000 | SRS20187572 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025402 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_50 (21PG33-1) | SAMN39503440 | 17/02/2025 | |||||||||||||||||||
| 608 | SRX23311246 | SRP484717 | Illumina NovaSeq 6000 | SRS20187574 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025403 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_51 (21PG33-1) | SAMN39503439 | 17/02/2025 | |||||||||||||||||||
| 609 | SRX23310962 | SRP484717 | Illumina NovaSeq 6000 | SRS20187291 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025404 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_52 (21PG33-1) | SAMN39503438 | 17/02/2025 | |||||||||||||||||||
| 610 | SRX23310963 | SRP484717 | Illumina NovaSeq 6000 | SRS20187290 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025405 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_53 (21PG33-1) | SAMN39503437 | 17/02/2025 | |||||||||||||||||||
| 611 | SRX23310964 | SRP484717 | Illumina NovaSeq 6000 | SRS20187293 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025406 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_54 (21PG33-1) | SAMN39503436 | 17/02/2025 | |||||||||||||||||||
| 612 | SRX23310965 | SRP484717 | Illumina NovaSeq 6000 | SRS20187292 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025407 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_55 (21PG33-1) | SAMN39503435 | 17/02/2025 | |||||||||||||||||||
| 613 | SRX23310966 | SRP484717 | Illumina NovaSeq 6000 | SRS20187294 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025408 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_56 (21PG33-1) | SAMN39503434 | 17/02/2025 | |||||||||||||||||||
| 614 | SRX23310967 | SRP484717 | Illumina NovaSeq 6000 | SRS20187295 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025409 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_57 (21PG33-1) | SAMN39503433 | 17/02/2025 | |||||||||||||||||||
| 615 | SRX23310968 | SRP484717 | Illumina NovaSeq 6000 | SRS20187296 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025410 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_58 (21PG33-1) | SAMN39503432 | 17/02/2025 | |||||||||||||||||||
| 617 | SRX23311296 | SRP484717 | Illumina NovaSeq 6000 | SRS20187622 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025412 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_2_6 (21PG50-3) | SAMN39503430 | 17/02/2025 | |||||||||||||||||||
| 618 | SRX23311297 | SRP484717 | Illumina NovaSeq 6000 | SRS20187624 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025413 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_60 (21PG33-1) | SAMN39503429 | 17/02/2025 | |||||||||||||||||||
| 619 | SRX23311298 | SRP484717 | Illumina NovaSeq 6000 | SRS20187627 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025414 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_61 (21PG33-1) | SAMN39503428 | 17/02/2025 | |||||||||||||||||||
| 620 | SRX23311299 | SRP484717 | Illumina NovaSeq 6000 | SRS20187625 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025415 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_62 (21PG33-1) | SAMN39503427 | 17/02/2025 | |||||||||||||||||||
| 628 | SRX23311383 | SRP484717 | Illumina NovaSeq 6000 | SRS20187711 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025423 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | 10141 | Smart-Seq2 | Full-length | JC_2_7 (21PG50-3) | SAMN39503419 | 17/02/2025 | |||||||||||||||||||
| 639 | SRX23311253 | SRP484717 | Illumina NovaSeq 6000 | SRS20187581 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025434 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_8 (21PG77-1) | SAMN39503408 | 17/02/2025 | |||||||||||||||||||
| 640 | SRX23311254 | SRP484717 | Illumina NovaSeq 6000 | SRS20187582 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025435 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | 10141 | Smart-Seq2 | Full-length | JC_2_80 (21PG42-2) | SAMN39503407 | 17/02/2025 | |||||||||||||||||||
| 642 | SRX23310971 | SRP484717 | Illumina NovaSeq 6000 | SRS20187299 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025437 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_82 (21PG55-1) | SAMN39503405 | 17/02/2025 | |||||||||||||||||||
| 643 | SRX23310972 | SRP484717 | Illumina NovaSeq 6000 | SRS20187300 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025438 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_83 (21PG55-1) | SAMN39503404 | 17/02/2025 | |||||||||||||||||||
| 644 | SRX23310973 | SRP484717 | Illumina NovaSeq 6000 | SRS20187301 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025439 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_84 (21PG55-1) | SAMN39503403 | 17/02/2025 | |||||||||||||||||||
| 645 | SRX23310974 | SRP484717 | Illumina NovaSeq 6000 | SRS20187302 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025440 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_85 (21PG55-1) | SAMN39503402 | 17/02/2025 | |||||||||||||||||||
| 646 | SRX23310975 | SRP484717 | Illumina NovaSeq 6000 | SRS20187305 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025441 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_86 (21PG55-1) | SAMN39503401 | 17/02/2025 | |||||||||||||||||||
| 647 | SRX23310976 | SRP484717 | Illumina NovaSeq 6000 | SRS20187304 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025442 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_87 (21PG55-1) | SAMN39503400 | 17/02/2025 | |||||||||||||||||||
| 648 | SRX23310977 | SRP484717 | Illumina NovaSeq 6000 | SRS20187303 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025443 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_88 (21PG55-1) | SAMN39503399 | 17/02/2025 | |||||||||||||||||||
| 649 | SRX23311304 | SRP484717 | Illumina NovaSeq 6000 | SRS20187631 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025444 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_89 (21PG55-1) | SAMN39503398 | 17/02/2025 | |||||||||||||||||||
| 650 | SRX23311305 | SRP484717 | Illumina NovaSeq 6000 | SRS20187634 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025445 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | 10141 | Smart-Seq2 | Full-length | JC_2_9 (21PG77-1) | SAMN39503397 | 17/02/2025 | |||||||||||||||||||
| 651 | SRX23311306 | SRP484717 | Illumina NovaSeq 6000 | SRS20187632 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025446 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_90 (21PG55-1) | SAMN39503396 | 17/02/2025 | |||||||||||||||||||
| 652 | SRX23311307 | SRP484717 | Illumina NovaSeq 6000 | SRS20187637 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025447 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_91 (21PG55-1) | SAMN39503395 | 17/02/2025 | |||||||||||||||||||
| 654 | SRX23311309 | SRP484717 | Illumina NovaSeq 6000 | SRS20187636 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025449 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_93 (21PG55-1) | SAMN39503393 | 17/02/2025 | |||||||||||||||||||
| 655 | SRX23311310 | SRP484717 | Illumina NovaSeq 6000 | SRS20187638 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025450 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_94 (21PG55-1) | SAMN39503392 | 17/02/2025 | |||||||||||||||||||
| 656 | SRX23311311 | SRP484717 | Illumina NovaSeq 6000 | SRS20187639 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025451 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_95 (21PG55-1) | SAMN39503391 | 17/02/2025 | |||||||||||||||||||
| 657 | SRX23311388 | SRP484717 | Illumina NovaSeq 6000 | SRS20187716 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025452 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_96 (21PG55-1) | SAMN39503390 | 17/02/2025 | |||||||||||||||||||
| 658 | SRX23311389 | SRP484717 | Illumina NovaSeq 6000 | SRS20187718 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025453 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_97 (21PG55-3) | SAMN39503389 | 17/02/2025 | |||||||||||||||||||
| 659 | SRX23311390 | SRP484717 | Illumina NovaSeq 6000 | SRS20187720 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025454 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_98 (21PG55-3) | SAMN39503388 | 17/02/2025 | |||||||||||||||||||
| 660 | SRX23311391 | SRP484717 | Illumina NovaSeq 6000 | SRS20187717 | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025455 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | 10141 | Smart-Seq2 | Full-length | JC_2_99 (21PG55-3) | SAMN39503387 | 17/02/2025 |
library annnotations¶
In [ ]:
library = pd.read_csv(library_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(library)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRX23310999 | SRP484717 | Illumina NovaSeq 6000 | SRS20187327 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024795 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_1 (21PG50-2) | SAMN39504047 | 17/02/2025 | ||||||||||
| 1 | SRX23311255 | SRP484717 | Illumina NovaSeq 6000 | SRS20187583 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024796 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_10 (21PG39-1) | SAMN39504046 | 17/02/2025 | ||||||||||
| 2 | SRX23311256 | SRP484717 | Illumina NovaSeq 6000 | SRS20187584 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024797 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_100 (21PG55-2) | SAMN39504045 | 17/02/2025 | ||||||||||
| 3 | SRX23311257 | SRP484717 | Illumina NovaSeq 6000 | SRS20187585 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024798 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_101 (21PG55-2) | SAMN39504044 | 17/02/2025 | ||||||||||
| 4 | SRX23311258 | SRP484717 | Illumina NovaSeq 6000 | SRS20187586 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024799 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_102 (21PG55-2) | SAMN39504043 | 17/02/2025 | ||||||||||
| 5 | SRX23311259 | SRP484717 | Illumina NovaSeq 6000 | SRS20187590 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024800 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_103 (21PG55-2) | SAMN39504042 | 17/02/2025 | ||||||||||
| 6 | SRX23310825 | SRP484717 | Illumina NovaSeq 6000 | SRS20187153 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024801 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_104 (21PG55-2) | SAMN39504041 | 17/02/2025 | ||||||||||
| 7 | SRX23310826 | SRP484717 | Illumina NovaSeq 6000 | SRS20187154 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024802 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_105 (21PG55-2) | SAMN39504040 | 17/02/2025 | ||||||||||
| 8 | SRX23310827 | SRP484717 | Illumina NovaSeq 6000 | SRS20187157 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024803 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_106 (21PG55-2) | SAMN39504039 | 17/02/2025 | ||||||||||
| 9 | SRX23311000 | SRP484717 | Illumina NovaSeq 6000 | SRS20187330 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024804 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_107 (21PG55-2) | SAMN39504038 | 17/02/2025 | ||||||||||
| 10 | SRX23311001 | SRP484717 | Illumina NovaSeq 6000 | SRS20187329 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024805 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_108 (21PG55-2) | SAMN39504037 | 17/02/2025 | ||||||||||
| 11 | SRX23311002 | SRP484717 | Illumina NovaSeq 6000 | SRS20187328 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024806 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_109 (21PG34-1) | SAMN39504036 | 17/02/2025 | ||||||||||
| 12 | SRX23311003 | SRP484717 | Illumina NovaSeq 6000 | SRS20187331 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024807 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_11 (21PG39-1) | SAMN39504035 | 17/02/2025 | ||||||||||
| 13 | SRX23311004 | SRP484717 | Illumina NovaSeq 6000 | SRS20187333 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024808 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_110 (21PG34-1) | SAMN39504034 | 17/02/2025 | ||||||||||
| 14 | SRX23311006 | SRP484717 | Illumina NovaSeq 6000 | SRS20187334 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024810 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_112 (21PG34-1) | SAMN39504032 | 17/02/2025 | ||||||||||
| 15 | SRX23311007 | SRP484717 | Illumina NovaSeq 6000 | SRS20187335 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024811 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_113 (21PG37-2) | SAMN39504031 | 17/02/2025 | ||||||||||
| 16 | SRX23311392 | SRP484717 | Illumina NovaSeq 6000 | SRS20187719 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024812 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_114 (21PG37-2) | SAMN39504030 | 17/02/2025 | ||||||||||
| 17 | SRX23311393 | SRP484717 | Illumina NovaSeq 6000 | SRS20187721 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024813 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_115 (21PG37-2) | SAMN39504029 | 17/02/2025 | ||||||||||
| 18 | SRX23311394 | SRP484717 | Illumina NovaSeq 6000 | SRS20187722 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024814 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_116 (21PG37-2) | SAMN39504028 | 17/02/2025 | ||||||||||
| 19 | SRX23311395 | SRP484717 | Illumina NovaSeq 6000 | SRS20187724 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024815 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_117 (21PG37-2) | SAMN39504027 | 17/02/2025 | ||||||||||
| 20 | SRX23311397 | SRP484717 | Illumina NovaSeq 6000 | SRS20187725 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024817 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_119 (21PG37-2) | SAMN39504025 | 17/02/2025 | ||||||||||
| 21 | SRX23311398 | SRP484717 | Illumina NovaSeq 6000 | SRS20187726 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024818 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_12 (21PG39-1) | SAMN39504024 | 17/02/2025 | ||||||||||
| 22 | SRX23311399 | SRP484717 | Illumina NovaSeq 6000 | SRS20187727 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024819 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_120 (21PG37-2) | SAMN39504023 | 17/02/2025 | ||||||||||
| 23 | SRX23310828 | SRP484717 | Illumina NovaSeq 6000 | SRS20187156 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024820 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_121 (21PG37-2) | SAMN39504022 | 17/02/2025 | ||||||||||
| 24 | SRX23310829 | SRP484717 | Illumina NovaSeq 6000 | SRS20187158 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024821 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_122 (21PG37-2) | SAMN39504021 | 17/02/2025 | ||||||||||
| 25 | SRX23310831 | SRP484717 | Illumina NovaSeq 6000 | SRS20187159 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024823 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_124 (21PG37-3) | SAMN39504019 | 17/02/2025 | ||||||||||
| 26 | SRX23310832 | SRP484717 | Illumina NovaSeq 6000 | SRS20187160 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024824 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_125 (21PG37-3) | SAMN39504018 | 17/02/2025 | ||||||||||
| 27 | SRX23310833 | SRP484717 | Illumina NovaSeq 6000 | SRS20187161 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024825 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_126 (21PG37-3) | SAMN39504017 | 17/02/2025 | ||||||||||
| 28 | SRX23310834 | SRP484717 | Illumina NovaSeq 6000 | SRS20187163 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024826 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_127 (21PG37-3) | SAMN39504016 | 17/02/2025 | ||||||||||
| 29 | SRX23310835 | SRP484717 | Illumina NovaSeq 6000 | SRS20187162 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024827 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_128 (21PG37-3) | SAMN39504015 | 17/02/2025 | ||||||||||
| 30 | SRX23311008 | SRP484717 | Illumina NovaSeq 6000 | SRS20187336 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024828 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_129 (21PG37-3) | SAMN39504014 | 17/02/2025 | ||||||||||
| 31 | SRX23311009 | SRP484717 | Illumina NovaSeq 6000 | SRS20187337 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024829 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_13 (21PG39-1) | SAMN39504013 | 17/02/2025 | ||||||||||
| 32 | SRX23311010 | SRP484717 | Illumina NovaSeq 6000 | SRS20187338 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024830 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_130 (21PG37-3) | SAMN39504012 | 17/02/2025 | ||||||||||
| 33 | SRX23311011 | SRP484717 | Illumina NovaSeq 6000 | SRS20187339 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024831 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_131 (21PG37-3) | SAMN39504011 | 17/02/2025 | ||||||||||
| 34 | SRX23311012 | SRP484717 | Illumina NovaSeq 6000 | SRS20187340 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024832 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_132 (21PG37-3) | SAMN39504010 | 17/02/2025 | ||||||||||
| 35 | SRX23311013 | SRP484717 | Illumina NovaSeq 6000 | SRS20187341 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024833 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_133 (21PG37-3) | SAMN39504009 | 17/02/2025 | ||||||||||
| 36 | SRX23311014 | SRP484717 | Illumina NovaSeq 6000 | SRS20187342 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024834 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_134 (21PG37-3) | SAMN39504008 | 17/02/2025 | ||||||||||
| 37 | SRX23311015 | SRP484717 | Illumina NovaSeq 6000 | SRS20187343 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024835 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_135 (21PG37-3) | SAMN39504007 | 17/02/2025 | ||||||||||
| 38 | SRX23311400 | SRP484717 | Illumina NovaSeq 6000 | SRS20187728 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024836 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_136 (21PG37-3) | SAMN39504006 | 17/02/2025 | ||||||||||
| 39 | SRX23311402 | SRP484717 | Illumina NovaSeq 6000 | SRS20187730 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024838 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_138 (21PG37-3) | SAMN39504004 | 17/02/2025 | ||||||||||
| 40 | SRX23311404 | SRP484717 | Illumina NovaSeq 6000 | SRS20187731 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024840 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_14 (21PG39-1) | SAMN39504002 | 17/02/2025 | ||||||||||
| 41 | SRX23311405 | SRP484717 | Illumina NovaSeq 6000 | SRS20187733 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024841 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_140 (21PG37-3) | SAMN39504001 | 17/02/2025 | ||||||||||
| 42 | SRX23311406 | SRP484717 | Illumina NovaSeq 6000 | SRS20187732 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024842 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_141 (21PG37-3) | SAMN39504000 | 17/02/2025 | ||||||||||
| 43 | SRX23310985 | SRP484717 | Illumina NovaSeq 6000 | SRS20187311 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024851 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_15 (21PG39-1) | SAMN39503991 | 17/02/2025 | ||||||||||
| 44 | SRX23310837 | SRP484717 | Illumina NovaSeq 6000 | SRS20187165 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024853 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_151 (21PG55-2) | SAMN39503989 | 17/02/2025 | ||||||||||
| 45 | SRX23310840 | SRP484717 | Illumina NovaSeq 6000 | SRS20187168 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024856 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_154 (21PG53-1) | SAMN39503986 | 17/02/2025 | ||||||||||
| 46 | SRX23310842 | SRP484717 | Illumina NovaSeq 6000 | SRS20187170 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024858 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_156 (21PG55-2) | SAMN39503984 | 17/02/2025 | ||||||||||
| 47 | SRX23310843 | SRP484717 | Illumina NovaSeq 6000 | SRS20187171 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024859 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_157 (21PG53-1) | SAMN39503983 | 17/02/2025 | ||||||||||
| 48 | SRX23311016 | SRP484717 | Illumina NovaSeq 6000 | SRS20187344 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024860 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_158 (21PG53-1) | SAMN39503982 | 17/02/2025 | ||||||||||
| 49 | SRX23311017 | SRP484717 | Illumina NovaSeq 6000 | SRS20187345 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024861 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_159 (21PG53-1) | SAMN39503981 | 17/02/2025 | ||||||||||
| 50 | SRX23311018 | SRP484717 | Illumina NovaSeq 6000 | SRS20187346 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024862 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_16 (21PG39-1) | SAMN39503980 | 17/02/2025 | ||||||||||
| 51 | SRX23311019 | SRP484717 | Illumina NovaSeq 6000 | SRS20187347 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024863 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_160 (21PG53-1) | SAMN39503979 | 17/02/2025 | ||||||||||
| 52 | SRX23311020 | SRP484717 | Illumina NovaSeq 6000 | SRS20187348 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024864 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_161 (21PG53-1) | SAMN39503978 | 17/02/2025 | ||||||||||
| 53 | SRX23311021 | SRP484717 | Illumina NovaSeq 6000 | SRS20187350 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024865 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_162 (21PG53-1) | SAMN39503977 | 17/02/2025 | ||||||||||
| 54 | SRX23311022 | SRP484717 | Illumina NovaSeq 6000 | SRS20187352 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024866 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_163 (21PG53-1) | SAMN39503976 | 17/02/2025 | ||||||||||
| 55 | SRX23311023 | SRP484717 | Illumina NovaSeq 6000 | SRS20187351 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024867 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_164 (21PG53-1) | SAMN39503975 | 17/02/2025 | ||||||||||
| 56 | SRX23311408 | SRP484717 | Illumina NovaSeq 6000 | SRS20187736 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024868 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_165 (21PG53-1) | SAMN39503974 | 17/02/2025 | ||||||||||
| 57 | SRX23311409 | SRP484717 | Illumina NovaSeq 6000 | SRS20187738 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024869 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_166 (21PG53-1) | SAMN39503973 | 17/02/2025 | ||||||||||
| 58 | SRX23311410 | SRP484717 | Illumina NovaSeq 6000 | SRS20187737 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024870 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_167 (21PG53-1) | SAMN39503972 | 17/02/2025 | ||||||||||
| 59 | SRX23311411 | SRP484717 | Illumina NovaSeq 6000 | SRS20187741 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024871 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_168 (21PG53-1) | SAMN39503971 | 17/02/2025 | ||||||||||
| 60 | SRX23311412 | SRP484717 | Illumina NovaSeq 6000 | SRS20187742 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024872 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_169 (21PG53-1) | SAMN39503970 | 17/02/2025 | ||||||||||
| 61 | SRX23311413 | SRP484717 | Illumina NovaSeq 6000 | SRS20187740 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024873 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_17 (21PG39-2) | SAMN39503969 | 17/02/2025 | ||||||||||
| 62 | SRX23311414 | SRP484717 | Illumina NovaSeq 6000 | SRS20187739 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024874 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_170 (21PG53-1) | SAMN39503968 | 17/02/2025 | ||||||||||
| 63 | SRX23310987 | SRP484717 | Illumina NovaSeq 6000 | SRS20187315 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024877 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_173 (21PG77-2) | SAMN39503965 | 17/02/2025 | ||||||||||
| 64 | SRX23310988 | SRP484717 | Illumina NovaSeq 6000 | SRS20187316 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024878 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_174 (21PG77-2) | SAMN39503964 | 17/02/2025 | ||||||||||
| 65 | SRX23310990 | SRP484717 | Illumina NovaSeq 6000 | SRS20187318 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024880 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_176 (21PG77-2) | SAMN39503962 | 17/02/2025 | ||||||||||
| 66 | SRX23310991 | SRP484717 | Illumina NovaSeq 6000 | SRS20187319 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024881 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_177 (21PG77-2) | SAMN39503961 | 17/02/2025 | ||||||||||
| 67 | SRX23310992 | SRP484717 | Illumina NovaSeq 6000 | SRS20187321 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024882 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_178 (21PG77-2) | SAMN39503960 | 17/02/2025 | ||||||||||
| 68 | SRX23310993 | SRP484717 | Illumina NovaSeq 6000 | SRS20187320 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024883 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_179 (21PG77-2) | SAMN39503959 | 17/02/2025 | ||||||||||
| 69 | SRX23310844 | SRP484717 | Illumina NovaSeq 6000 | SRS20187173 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024884 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_18 (21PG40-1) | SAMN39503958 | 17/02/2025 | ||||||||||
| 70 | SRX23310845 | SRP484717 | Illumina NovaSeq 6000 | SRS20187172 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024885 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_180 (21PG77-2) | SAMN39503957 | 17/02/2025 | ||||||||||
| 71 | SRX23310846 | SRP484717 | Illumina NovaSeq 6000 | SRS20187175 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024886 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_181 (21PG77-2) | SAMN39503956 | 17/02/2025 | ||||||||||
| 72 | SRX23310847 | SRP484717 | Illumina NovaSeq 6000 | SRS20187174 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024887 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_182 (21PG77-2) | SAMN39503955 | 17/02/2025 | ||||||||||
| 73 | SRX23310848 | SRP484717 | Illumina NovaSeq 6000 | SRS20187176 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024888 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_183 (21PG77-2) | SAMN39503954 | 17/02/2025 | ||||||||||
| 74 | SRX23310849 | SRP484717 | Illumina NovaSeq 6000 | SRS20187178 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024889 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_184 (21PG77-2) | SAMN39503953 | 17/02/2025 | ||||||||||
| 75 | SRX23310850 | SRP484717 | Illumina NovaSeq 6000 | SRS20187177 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024890 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_185 (21PG77-2) | SAMN39503952 | 17/02/2025 | ||||||||||
| 76 | SRX23310851 | SRP484717 | Illumina NovaSeq 6000 | SRS20187179 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024891 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_186 (21PG50-1) | SAMN39503951 | 17/02/2025 | ||||||||||
| 77 | SRX23311024 | SRP484717 | Illumina NovaSeq 6000 | SRS20187349 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024892 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_187 (21PG50-1) | SAMN39503950 | 17/02/2025 | ||||||||||
| 78 | SRX23311025 | SRP484717 | Illumina NovaSeq 6000 | SRS20187354 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024893 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_188 (21PG50-1) | SAMN39503949 | 17/02/2025 | ||||||||||
| 79 | SRX23311027 | SRP484717 | Illumina NovaSeq 6000 | SRS20187353 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024895 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_19 (21PG40-1) | SAMN39503947 | 17/02/2025 | ||||||||||
| 80 | SRX23311029 | SRP484717 | Illumina NovaSeq 6000 | SRS20187356 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024897 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_191 (21PG50-1) | SAMN39503945 | 17/02/2025 | ||||||||||
| 81 | SRX23311030 | SRP484717 | Illumina NovaSeq 6000 | SRS20187359 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024898 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_192 (21PG50-1) | SAMN39503944 | 17/02/2025 | ||||||||||
| 82 | SRX23311031 | SRP484717 | Illumina NovaSeq 6000 | SRS20187360 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024899 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_193 (21PG57-1) | SAMN39503943 | 17/02/2025 | ||||||||||
| 83 | SRX23311417 | SRP484717 | Illumina NovaSeq 6000 | SRS20187747 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024901 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_195 (21PG57-1) | SAMN39503941 | 17/02/2025 | ||||||||||
| 84 | SRX23311418 | SRP484717 | Illumina NovaSeq 6000 | SRS20187745 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024902 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_196 (21PG57-1) | SAMN39503940 | 17/02/2025 | ||||||||||
| 85 | SRX23311419 | SRP484717 | Illumina NovaSeq 6000 | SRS20187746 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024903 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_198 (21PG57-1) | SAMN39503939 | 17/02/2025 | ||||||||||
| 86 | SRX23311420 | SRP484717 | Illumina NovaSeq 6000 | SRS20187749 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024904 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_2 (21PG50-2) | SAMN39503938 | 17/02/2025 | ||||||||||
| 87 | SRX23311421 | SRP484717 | Illumina NovaSeq 6000 | SRS20187748 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024905 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_20 (21PG40-1) | SAMN39503937 | 17/02/2025 | ||||||||||
| 88 | SRX23311422 | SRP484717 | Illumina NovaSeq 6000 | SRS20187750 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024906 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_200 (21PG57-1) | SAMN39503936 | 17/02/2025 | ||||||||||
| 89 | SRX23311423 | SRP484717 | Illumina NovaSeq 6000 | SRS20187753 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024907 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_201 (21PG57-1) | SAMN39503935 | 17/02/2025 | ||||||||||
| 90 | SRX23310994 | SRP484717 | Illumina NovaSeq 6000 | SRS20187322 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024908 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_202 (21PG57-1) | SAMN39503934 | 17/02/2025 | ||||||||||
| 91 | SRX23310995 | SRP484717 | Illumina NovaSeq 6000 | SRS20187323 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024909 | Late blastocyst: E5.5 | ICM: PE | Late blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_206 (21PG57-1) | SAMN39503933 | 17/02/2025 | ||||||||||
| 92 | SRX23310996 | SRP484717 | Illumina NovaSeq 6000 | SRS20187324 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024910 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_209 (21PG57-1) | SAMN39503932 | 17/02/2025 | ||||||||||
| 93 | SRX23310997 | SRP484717 | Illumina NovaSeq 6000 | SRS20187325 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024911 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_21 (21PG40-1) | SAMN39503931 | 17/02/2025 | ||||||||||
| 94 | SRX23310998 | SRP484717 | Illumina NovaSeq 6000 | SRS20187326 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024912 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_210 (21PG57-1) | SAMN39503930 | 17/02/2025 | ||||||||||
| 95 | SRX23311086 | SRP484717 | Illumina NovaSeq 6000 | SRS20187411 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024913 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_22 (21PG40-1) | SAMN39503929 | 17/02/2025 | ||||||||||
| 96 | SRX23311087 | SRP484717 | Illumina NovaSeq 6000 | SRS20187415 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024914 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_23 (21PG40-1) | SAMN39503928 | 17/02/2025 | ||||||||||
| 97 | SRX23311088 | SRP484717 | Illumina NovaSeq 6000 | SRS20187416 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024915 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_230 (21PG49-3) | SAMN39503927 | 17/02/2025 | ||||||||||
| 98 | SRX23310852 | SRP484717 | Illumina NovaSeq 6000 | SRS20187180 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024916 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_231 (21PG49-3) | SAMN39503926 | 17/02/2025 | ||||||||||
| 99 | SRX23310853 | SRP484717 | Illumina NovaSeq 6000 | SRS20187181 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024917 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_232 (21PG49-3) | SAMN39503925 | 17/02/2025 | ||||||||||
| 100 | SRX23310854 | SRP484717 | Illumina NovaSeq 6000 | SRS20187182 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024918 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_233 (21PG49-3) | SAMN39503924 | 17/02/2025 | ||||||||||
| 101 | SRX23310855 | SRP484717 | Illumina NovaSeq 6000 | SRS20187183 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024919 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_234 (21PG49-3) | SAMN39503923 | 17/02/2025 | ||||||||||
| 102 | SRX23310856 | SRP484717 | Illumina NovaSeq 6000 | SRS20187184 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024920 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_235 (21PG49-3) | SAMN39503922 | 17/02/2025 | ||||||||||
| 103 | SRX23310857 | SRP484717 | Illumina NovaSeq 6000 | SRS20187186 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024921 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_236 (21PG49-3) | SAMN39503921 | 17/02/2025 | ||||||||||
| 104 | SRX23310858 | SRP484717 | Illumina NovaSeq 6000 | SRS20187187 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024922 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_237 (21PG49-3) | SAMN39503920 | 17/02/2025 | ||||||||||
| 105 | SRX23310859 | SRP484717 | Illumina NovaSeq 6000 | SRS20187185 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024923 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_238 (21PG49-3) | SAMN39503919 | 17/02/2025 | ||||||||||
| 106 | SRX23311032 | SRP484717 | Illumina NovaSeq 6000 | SRS20187358 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024924 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_239 (21PG49-3) | SAMN39503918 | 17/02/2025 | ||||||||||
| 107 | SRX23311033 | SRP484717 | Illumina NovaSeq 6000 | SRS20187362 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024925 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_24 (21PG40-1) | SAMN39503917 | 17/02/2025 | ||||||||||
| 108 | SRX23311034 | SRP484717 | Illumina NovaSeq 6000 | SRS20187361 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024926 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_240 (21PG49-3) | SAMN39503916 | 17/02/2025 | ||||||||||
| 109 | SRX23311035 | SRP484717 | Illumina NovaSeq 6000 | SRS20187364 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024927 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_241 (21PG49-3) | SAMN39503915 | 17/02/2025 | ||||||||||
| 110 | SRX23311036 | SRP484717 | Illumina NovaSeq 6000 | SRS20187365 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024928 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_242 (21PG49-3) | SAMN39503914 | 17/02/2025 | ||||||||||
| 111 | SRX23311037 | SRP484717 | Illumina NovaSeq 6000 | SRS20187363 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024929 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_243 (21PG49-3) | SAMN39503913 | 17/02/2025 | ||||||||||
| 112 | SRX23311038 | SRP484717 | Illumina NovaSeq 6000 | SRS20187366 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024930 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_244 (21PG49-3) | SAMN39503912 | 17/02/2025 | ||||||||||
| 113 | SRX23311039 | SRP484717 | Illumina NovaSeq 6000 | SRS20187367 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024931 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_245 (21PG49-3) | SAMN39503911 | 17/02/2025 | ||||||||||
| 114 | SRX23311424 | SRP484717 | Illumina NovaSeq 6000 | SRS20187752 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024932 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_246 (21PG49-3) | SAMN39503910 | 17/02/2025 | ||||||||||
| 115 | SRX23311425 | SRP484717 | Illumina NovaSeq 6000 | SRS20187751 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024933 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_247 (21PG49-3) | SAMN39503909 | 17/02/2025 | ||||||||||
| 116 | SRX23311426 | SRP484717 | Illumina NovaSeq 6000 | SRS20187754 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024934 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_248 (21PG49-3) | SAMN39503908 | 17/02/2025 | ||||||||||
| 117 | SRX23311427 | SRP484717 | Illumina NovaSeq 6000 | SRS20187755 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024935 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_249 (21PG49-3) | SAMN39503907 | 17/02/2025 | ||||||||||
| 118 | SRX23311428 | SRP484717 | Illumina NovaSeq 6000 | SRS20187756 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024936 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_25 (21PG40-1) | SAMN39503906 | 17/02/2025 | ||||||||||
| 119 | SRX23311429 | SRP484717 | Illumina NovaSeq 6000 | SRS20187757 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024937 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_250 (21PG49-3) | SAMN39503905 | 17/02/2025 | ||||||||||
| 120 | SRX23311430 | SRP484717 | Illumina NovaSeq 6000 | SRS20187758 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024938 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_251 (21PG49-3) | SAMN39503904 | 17/02/2025 | ||||||||||
| 121 | SRX23311431 | SRP484717 | Illumina NovaSeq 6000 | SRS20187759 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024939 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_252 (21PG49-3) | SAMN39503903 | 17/02/2025 | ||||||||||
| 122 | SRX23311089 | SRP484717 | Illumina NovaSeq 6000 | SRS20187417 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024940 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_253 (21PG49-3) | SAMN39503902 | 17/02/2025 | ||||||||||
| 123 | SRX23311090 | SRP484717 | Illumina NovaSeq 6000 | SRS20187418 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024941 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_254 (21PG76-2) | SAMN39503901 | 17/02/2025 | ||||||||||
| 124 | SRX23311091 | SRP484717 | Illumina NovaSeq 6000 | SRS20187420 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024942 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_255 (21PG76-2) | SAMN39503900 | 17/02/2025 | ||||||||||
| 125 | SRX23311093 | SRP484717 | Illumina NovaSeq 6000 | SRS20187421 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024944 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_257 (20PG4-2) | SAMN39503898 | 17/02/2025 | ||||||||||
| 126 | SRX23311094 | SRP484717 | Illumina NovaSeq 6000 | SRS20187422 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024945 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_258 (20PG4-2) | SAMN39503897 | 17/02/2025 | ||||||||||
| 127 | SRX23311095 | SRP484717 | Illumina NovaSeq 6000 | SRS20187424 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024946 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_259 (20PG4-2) | SAMN39503896 | 17/02/2025 | ||||||||||
| 128 | SRX23311096 | SRP484717 | Illumina NovaSeq 6000 | SRS20187423 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024947 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_26 (21PG40-1) | SAMN39503895 | 17/02/2025 | ||||||||||
| 129 | SRX23310860 | SRP484717 | Illumina NovaSeq 6000 | SRS20187188 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024948 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_260 (20PG4-2) | SAMN39503894 | 17/02/2025 | ||||||||||
| 130 | SRX23310861 | SRP484717 | Illumina NovaSeq 6000 | SRS20187190 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024949 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_261 (20PG4-2) | SAMN39503893 | 17/02/2025 | ||||||||||
| 131 | SRX23310862 | SRP484717 | Illumina NovaSeq 6000 | SRS20187189 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024950 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_262 (20PG4-2) | SAMN39503892 | 17/02/2025 | ||||||||||
| 132 | SRX23310863 | SRP484717 | Illumina NovaSeq 6000 | SRS20187191 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024951 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_263 (20PG4-2) | SAMN39503891 | 17/02/2025 | ||||||||||
| 133 | SRX23310864 | SRP484717 | Illumina NovaSeq 6000 | SRS20187192 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024952 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_264 (20PG4-2) | SAMN39503890 | 17/02/2025 | ||||||||||
| 134 | SRX23310865 | SRP484717 | Illumina NovaSeq 6000 | SRS20187194 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024953 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_265 (20PG4-2) | SAMN39503889 | 17/02/2025 | ||||||||||
| 135 | SRX23310866 | SRP484717 | Illumina NovaSeq 6000 | SRS20187193 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024954 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_266 (20PG4-2) | SAMN39503888 | 17/02/2025 | ||||||||||
| 136 | SRX23310867 | SRP484717 | Illumina NovaSeq 6000 | SRS20187195 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024955 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_267 (20PG4-2) | SAMN39503887 | 17/02/2025 | ||||||||||
| 137 | SRX23311040 | SRP484717 | Illumina NovaSeq 6000 | SRS20187368 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024956 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_268 (20PG4-2) | SAMN39503886 | 17/02/2025 | ||||||||||
| 138 | SRX23311041 | SRP484717 | Illumina NovaSeq 6000 | SRS20187371 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024957 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_269 (20PG4-2) | SAMN39503885 | 17/02/2025 | ||||||||||
| 139 | SRX23311042 | SRP484717 | Illumina NovaSeq 6000 | SRS20187369 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024958 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_27 (21PG40-1) | SAMN39503884 | 17/02/2025 | ||||||||||
| 140 | SRX23311043 | SRP484717 | Illumina NovaSeq 6000 | SRS20187370 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024959 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_270 (20PG4-2) | SAMN39503883 | 17/02/2025 | ||||||||||
| 141 | SRX23311044 | SRP484717 | Illumina NovaSeq 6000 | SRS20187372 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024960 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_271 (20PG4-2) | SAMN39503882 | 17/02/2025 | ||||||||||
| 142 | SRX23311045 | SRP484717 | Illumina NovaSeq 6000 | SRS20187374 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024961 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_272 (20PG4-2) | SAMN39503881 | 17/02/2025 | ||||||||||
| 143 | SRX23311046 | SRP484717 | Illumina NovaSeq 6000 | SRS20187373 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024962 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_273 (20PG4-2) | SAMN39503880 | 17/02/2025 | ||||||||||
| 144 | SRX23311047 | SRP484717 | Illumina NovaSeq 6000 | SRS20187376 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024963 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_274 (20PG4-2) | SAMN39503879 | 17/02/2025 | ||||||||||
| 145 | SRX23311432 | SRP484717 | Illumina NovaSeq 6000 | SRS20187760 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024964 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_275 (20PG4-2) | SAMN39503878 | 17/02/2025 | ||||||||||
| 146 | SRX23311433 | SRP484717 | Illumina NovaSeq 6000 | SRS20187761 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024965 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_276 (20PG4-2) | SAMN39503877 | 17/02/2025 | ||||||||||
| 147 | SRX23311434 | SRP484717 | Illumina NovaSeq 6000 | SRS20187762 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024966 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_277 (20PG4-2) | SAMN39503876 | 17/02/2025 | ||||||||||
| 148 | SRX23311435 | SRP484717 | Illumina NovaSeq 6000 | SRS20187764 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024967 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_278 (20PG4-2) | SAMN39503875 | 17/02/2025 | ||||||||||
| 149 | SRX23311436 | SRP484717 | Illumina NovaSeq 6000 | SRS20187763 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024968 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_279 (20PG4-2) | SAMN39503874 | 17/02/2025 | ||||||||||
| 150 | SRX23311437 | SRP484717 | Illumina NovaSeq 6000 | SRS20187765 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024969 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_28 (21PG40-1) | SAMN39503873 | 17/02/2025 | ||||||||||
| 151 | SRX23311438 | SRP484717 | Illumina NovaSeq 6000 | SRS20187769 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024970 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_280 (20PG4-2) | SAMN39503872 | 17/02/2025 | ||||||||||
| 152 | SRX23311439 | SRP484717 | Illumina NovaSeq 6000 | SRS20187767 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024971 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_281 (20PG4-2) | SAMN39503871 | 17/02/2025 | ||||||||||
| 153 | SRX23311097 | SRP484717 | Illumina NovaSeq 6000 | SRS20187425 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024972 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_282 (20PG4-2) | SAMN39503870 | 17/02/2025 | ||||||||||
| 154 | SRX23311098 | SRP484717 | Illumina NovaSeq 6000 | SRS20187426 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024973 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_283 (20PG4-2) | SAMN39503869 | 17/02/2025 | ||||||||||
| 155 | SRX23311099 | SRP484717 | Illumina NovaSeq 6000 | SRS20187427 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024974 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_284 (20PG4-2) | SAMN39503868 | 17/02/2025 | ||||||||||
| 156 | SRX23311100 | SRP484717 | Illumina NovaSeq 6000 | SRS20187429 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024975 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_285 (20PG4-2) | SAMN39503867 | 17/02/2025 | ||||||||||
| 157 | SRX23311101 | SRP484717 | Illumina NovaSeq 6000 | SRS20187430 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024976 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_286 (20PG4-2) | SAMN39503866 | 17/02/2025 | ||||||||||
| 158 | SRX23311102 | SRP484717 | Illumina NovaSeq 6000 | SRS20187428 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024977 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_287 (20PG4-2) | SAMN39503865 | 17/02/2025 | ||||||||||
| 159 | SRX23311103 | SRP484717 | Illumina NovaSeq 6000 | SRS20187431 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024978 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_288 (21PG57-1) | SAMN39503864 | 17/02/2025 | ||||||||||
| 160 | SRX23310868 | SRP484717 | Illumina NovaSeq 6000 | SRS20187197 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024980 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_29 (21PG40-1) | SAMN39503862 | 17/02/2025 | ||||||||||
| 161 | SRX23310869 | SRP484717 | Illumina NovaSeq 6000 | SRS20187196 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024981 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_290 (20PG4-1) | SAMN39503861 | 17/02/2025 | ||||||||||
| 162 | SRX23310870 | SRP484717 | Illumina NovaSeq 6000 | SRS20187198 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024982 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_291 (20PG4-1) | SAMN39503860 | 17/02/2025 | ||||||||||
| 163 | SRX23310871 | SRP484717 | Illumina NovaSeq 6000 | SRS20187199 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024983 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_292 (20PG4-1) | SAMN39503859 | 17/02/2025 | ||||||||||
| 164 | SRX23310872 | SRP484717 | Illumina NovaSeq 6000 | SRS20187202 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024984 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_293 (20PG4-1) | SAMN39503858 | 17/02/2025 | ||||||||||
| 165 | SRX23310873 | SRP484717 | Illumina NovaSeq 6000 | SRS20187200 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024985 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_294 (20PG4-1) | SAMN39503857 | 17/02/2025 | ||||||||||
| 166 | SRX23310874 | SRP484717 | Illumina NovaSeq 6000 | SRS20187201 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024986 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_295 (20PG4-1) | SAMN39503856 | 17/02/2025 | ||||||||||
| 167 | SRX23310875 | SRP484717 | Illumina NovaSeq 6000 | SRS20187203 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024987 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_296 (20PG4-1) | SAMN39503855 | 17/02/2025 | ||||||||||
| 168 | SRX23311048 | SRP484717 | Illumina NovaSeq 6000 | SRS20187375 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024988 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_297 (20PG4-1) | SAMN39503854 | 17/02/2025 | ||||||||||
| 169 | SRX23311049 | SRP484717 | Illumina NovaSeq 6000 | SRS20187377 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024989 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_298 (20PG4-1) | SAMN39503853 | 17/02/2025 | ||||||||||
| 170 | SRX23311050 | SRP484717 | Illumina NovaSeq 6000 | SRS20187378 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024990 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_299 (20PG4-1) | SAMN39503852 | 17/02/2025 | ||||||||||
| 171 | SRX23311051 | SRP484717 | Illumina NovaSeq 6000 | SRS20187379 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024991 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_3 (21PG50-2) | SAMN39503851 | 17/02/2025 | ||||||||||
| 172 | SRX23311052 | SRP484717 | Illumina NovaSeq 6000 | SRS20187380 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024992 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_30 (21PG40-1) | SAMN39503850 | 17/02/2025 | ||||||||||
| 173 | SRX23311053 | SRP484717 | Illumina NovaSeq 6000 | SRS20187381 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024993 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_300 (20PG4-1) | SAMN39503849 | 17/02/2025 | ||||||||||
| 174 | SRX23311054 | SRP484717 | Illumina NovaSeq 6000 | SRS20187382 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024994 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_301 (20PG4-1) | SAMN39503848 | 17/02/2025 | ||||||||||
| 175 | SRX23311055 | SRP484717 | Illumina NovaSeq 6000 | SRS20187383 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024995 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_302 (20PG4-1) | SAMN39503847 | 17/02/2025 | ||||||||||
| 176 | SRX23311441 | SRP484717 | Illumina NovaSeq 6000 | SRS20187768 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024997 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_304 (20PG4-1) | SAMN39503845 | 17/02/2025 | ||||||||||
| 177 | SRX23311442 | SRP484717 | Illumina NovaSeq 6000 | SRS20187772 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024998 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_305 (20PG4-1) | SAMN39503844 | 17/02/2025 | ||||||||||
| 178 | SRX23311443 | SRP484717 | Illumina NovaSeq 6000 | SRS20187770 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024999 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_306 (20PG4-1) | SAMN39503843 | 17/02/2025 | ||||||||||
| 179 | SRX23311444 | SRP484717 | Illumina NovaSeq 6000 | SRS20187771 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025000 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_307 (20PG4-1) | SAMN39503842 | 17/02/2025 | ||||||||||
| 180 | SRX23311446 | SRP484717 | Illumina NovaSeq 6000 | SRS20187774 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025002 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_309 (20PG4-1) | SAMN39503840 | 17/02/2025 | ||||||||||
| 181 | SRX23311447 | SRP484717 | Illumina NovaSeq 6000 | SRS20187775 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025003 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_31 (21PG40-1) | SAMN39503839 | 17/02/2025 | ||||||||||
| 182 | SRX23311106 | SRP484717 | Illumina NovaSeq 6000 | SRS20187435 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025005 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_311 (20PG4-1) | SAMN39503837 | 17/02/2025 | ||||||||||
| 183 | SRX23311109 | SRP484717 | Illumina NovaSeq 6000 | SRS20187437 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025008 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_314 (21PG75-1) | SAMN39503834 | 17/02/2025 | ||||||||||
| 184 | SRX23311110 | SRP484717 | Illumina NovaSeq 6000 | SRS20187436 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025009 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_315 (21PG75-1) | SAMN39503833 | 17/02/2025 | ||||||||||
| 185 | SRX23311111 | SRP484717 | Illumina NovaSeq 6000 | SRS20187440 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025010 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_316 (21PG75-1) | SAMN39503832 | 17/02/2025 | ||||||||||
| 186 | SRX23310877 | SRP484717 | Illumina NovaSeq 6000 | SRS20187204 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025013 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_319 (21PG75-1) | SAMN39503829 | 17/02/2025 | ||||||||||
| 187 | SRX23310878 | SRP484717 | Illumina NovaSeq 6000 | SRS20187206 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025014 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_32 (21PG40-1) | SAMN39503828 | 17/02/2025 | ||||||||||
| 188 | SRX23310879 | SRP484717 | Illumina NovaSeq 6000 | SRS20187207 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025015 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_320 (21PG75-1) | SAMN39503827 | 17/02/2025 | ||||||||||
| 189 | SRX23310880 | SRP484717 | Illumina NovaSeq 6000 | SRS20187208 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025016 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_321 (21PG75-1) | SAMN39503826 | 17/02/2025 | ||||||||||
| 190 | SRX23310881 | SRP484717 | Illumina NovaSeq 6000 | SRS20187209 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025017 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_322 (21PG75-1) | SAMN39503825 | 17/02/2025 | ||||||||||
| 191 | SRX23310882 | SRP484717 | Illumina NovaSeq 6000 | SRS20187212 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025018 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_323 (21PG75-1) | SAMN39503824 | 17/02/2025 | ||||||||||
| 192 | SRX23310883 | SRP484717 | Illumina NovaSeq 6000 | SRS20187211 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025019 | Late blastocyst: E6 | TE: polar | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_324 (21PG75-1) | SAMN39503823 | 17/02/2025 | ||||||||||
| 193 | SRX23311056 | SRP484717 | Illumina NovaSeq 6000 | SRS20187384 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025020 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_325 (21PG75-1) | SAMN39503822 | 17/02/2025 | ||||||||||
| 194 | SRX23311057 | SRP484717 | Illumina NovaSeq 6000 | SRS20187386 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025021 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_326 (21PG75-1) | SAMN39503821 | 17/02/2025 | ||||||||||
| 195 | SRX23311059 | SRP484717 | Illumina NovaSeq 6000 | SRS20187385 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025023 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_328 (21PG75-1) | SAMN39503819 | 17/02/2025 | ||||||||||
| 196 | SRX23311060 | SRP484717 | Illumina NovaSeq 6000 | SRS20187389 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025024 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_329 (21PG75-1) | SAMN39503818 | 17/02/2025 | ||||||||||
| 197 | SRX23311061 | SRP484717 | Illumina NovaSeq 6000 | SRS20187390 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025025 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_33 (21PG40-1) | SAMN39503817 | 17/02/2025 | ||||||||||
| 198 | SRX23311062 | SRP484717 | Illumina NovaSeq 6000 | SRS20187388 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025026 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_330 (21PG75-1) | SAMN39503816 | 17/02/2025 | ||||||||||
| 199 | SRX23311063 | SRP484717 | Illumina NovaSeq 6000 | SRS20187391 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025027 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_331 (21PG75-1) | SAMN39503815 | 17/02/2025 | ||||||||||
| 200 | SRX23311448 | SRP484717 | Illumina NovaSeq 6000 | SRS20187776 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025028 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_332 (21PG75-1) | SAMN39503814 | 17/02/2025 | ||||||||||
| 201 | SRX23311449 | SRP484717 | Illumina NovaSeq 6000 | SRS20187777 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025029 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_333 (21PG75-1) | SAMN39503813 | 17/02/2025 | ||||||||||
| 202 | SRX23311450 | SRP484717 | Illumina NovaSeq 6000 | SRS20187778 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025030 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_334 (21PG75-1) | SAMN39503812 | 17/02/2025 | ||||||||||
| 203 | SRX23311451 | SRP484717 | Illumina NovaSeq 6000 | SRS20187780 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025031 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_335 (21PG52-2) | SAMN39503811 | 17/02/2025 | ||||||||||
| 204 | SRX23311452 | SRP484717 | Illumina NovaSeq 6000 | SRS20187779 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025032 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_336 (21PG52-2) | SAMN39503810 | 17/02/2025 | ||||||||||
| 205 | SRX23311453 | SRP484717 | Illumina NovaSeq 6000 | SRS20187781 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025033 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_337 (21PG52-2) | SAMN39503809 | 17/02/2025 | ||||||||||
| 206 | SRX23311454 | SRP484717 | Illumina NovaSeq 6000 | SRS20187782 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025034 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_338 (21PG52-2) | SAMN39503808 | 17/02/2025 | ||||||||||
| 207 | SRX23311113 | SRP484717 | Illumina NovaSeq 6000 | SRS20187442 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025036 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_34 (21PG40-1) | SAMN39503806 | 17/02/2025 | ||||||||||
| 208 | SRX23311114 | SRP484717 | Illumina NovaSeq 6000 | SRS20187441 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025037 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_340 (21PG52-2) | SAMN39503805 | 17/02/2025 | ||||||||||
| 209 | SRX23311115 | SRP484717 | Illumina NovaSeq 6000 | SRS20187443 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025038 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_341 (21PG52-2) | SAMN39503804 | 17/02/2025 | ||||||||||
| 210 | SRX23311116 | SRP484717 | Illumina NovaSeq 6000 | SRS20187444 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025039 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_342 (21PG52-2) | SAMN39503803 | 17/02/2025 | ||||||||||
| 211 | SRX23311117 | SRP484717 | Illumina NovaSeq 6000 | SRS20187446 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025040 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_343 (21PG52-2) | SAMN39503802 | 17/02/2025 | ||||||||||
| 212 | SRX23311118 | SRP484717 | Illumina NovaSeq 6000 | SRS20187445 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025041 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_344 (21PG52-2) | SAMN39503801 | 17/02/2025 | ||||||||||
| 213 | SRX23311119 | SRP484717 | Illumina NovaSeq 6000 | SRS20187447 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025042 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_345 (21PG52-2) | SAMN39503800 | 17/02/2025 | ||||||||||
| 214 | SRX23311120 | SRP484717 | Illumina NovaSeq 6000 | SRS20187448 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025043 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_346 (21PG52-2) | SAMN39503799 | 17/02/2025 | ||||||||||
| 215 | SRX23310884 | SRP484717 | Illumina NovaSeq 6000 | SRS20187210 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025044 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_347 (21PG52-2) | SAMN39503798 | 17/02/2025 | ||||||||||
| 216 | SRX23310885 | SRP484717 | Illumina NovaSeq 6000 | SRS20187213 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025045 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_348 (21PG52-2) | SAMN39503797 | 17/02/2025 | ||||||||||
| 217 | SRX23310886 | SRP484717 | Illumina NovaSeq 6000 | SRS20187215 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025046 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_349 (21PG52-2) | SAMN39503796 | 17/02/2025 | ||||||||||
| 218 | SRX23310887 | SRP484717 | Illumina NovaSeq 6000 | SRS20187214 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025047 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_35 (21PG40-1) | SAMN39503795 | 17/02/2025 | ||||||||||
| 219 | SRX23310889 | SRP484717 | Illumina NovaSeq 6000 | SRS20187217 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025049 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_351 (21PG52-2) | SAMN39503793 | 17/02/2025 | ||||||||||
| 220 | SRX23310890 | SRP484717 | Illumina NovaSeq 6000 | SRS20187218 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025050 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_352 (21PG52-2) | SAMN39503792 | 17/02/2025 | ||||||||||
| 221 | SRX23310891 | SRP484717 | Illumina NovaSeq 6000 | SRS20187219 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025051 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_353 (21PG41-1) | SAMN39503791 | 17/02/2025 | ||||||||||
| 222 | SRX23311064 | SRP484717 | Illumina NovaSeq 6000 | SRS20187392 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025052 | 16-32 cell: E4.75 | Prelineage: Morula | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_354 (21PG41-1) | SAMN39503790 | 17/02/2025 | ||||||||||
| 223 | SRX23311065 | SRP484717 | Illumina NovaSeq 6000 | SRS20187393 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025053 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_355 (21PG41-1) | SAMN39503789 | 17/02/2025 | ||||||||||
| 224 | SRX23311066 | SRP484717 | Illumina NovaSeq 6000 | SRS20187395 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025054 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_356 (21PG41-1) | SAMN39503788 | 17/02/2025 | ||||||||||
| 225 | SRX23311067 | SRP484717 | Illumina NovaSeq 6000 | SRS20187396 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025055 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_357 (21PG41-1) | SAMN39503787 | 17/02/2025 | ||||||||||
| 226 | SRX23311068 | SRP484717 | Illumina NovaSeq 6000 | SRS20187394 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025056 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_358 (21PG41-1) | SAMN39503786 | 17/02/2025 | ||||||||||
| 227 | SRX23311069 | SRP484717 | Illumina NovaSeq 6000 | SRS20187397 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025057 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_359 (21PG41-1) | SAMN39503785 | 17/02/2025 | ||||||||||
| 228 | SRX23311070 | SRP484717 | Illumina NovaSeq 6000 | SRS20187398 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025058 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_36 (21PG40-1) | SAMN39503784 | 17/02/2025 | ||||||||||
| 229 | SRX23311071 | SRP484717 | Illumina NovaSeq 6000 | SRS20187399 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025059 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_360 (21PG41-1) | SAMN39503783 | 17/02/2025 | ||||||||||
| 230 | SRX23311458 | SRP484717 | Illumina NovaSeq 6000 | SRS20187786 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025062 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_37 (21PG40-1) | SAMN39503780 | 17/02/2025 | ||||||||||
| 231 | SRX23311459 | SRP484717 | Illumina NovaSeq 6000 | SRS20187787 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025063 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_38 (21PG40-1) | SAMN39503779 | 17/02/2025 | ||||||||||
| 232 | SRX23311460 | SRP484717 | Illumina NovaSeq 6000 | SRS20187788 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025064 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_39 (21PG40-1) | SAMN39503778 | 17/02/2025 | ||||||||||
| 233 | SRX23311461 | SRP484717 | Illumina NovaSeq 6000 | SRS20187789 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025065 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_4 (21PG50-2) | SAMN39503777 | 17/02/2025 | ||||||||||
| 234 | SRX23311462 | SRP484717 | Illumina NovaSeq 6000 | SRS20187791 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025066 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_40 (21PG40-1) | SAMN39503776 | 17/02/2025 | ||||||||||
| 235 | SRX23311463 | SRP484717 | Illumina NovaSeq 6000 | SRS20187790 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025067 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_41 (21PG40-1) | SAMN39503775 | 17/02/2025 | ||||||||||
| 236 | SRX23311121 | SRP484717 | Illumina NovaSeq 6000 | SRS20187449 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025068 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_42 (21PG40-1) | SAMN39503774 | 17/02/2025 | ||||||||||
| 237 | SRX23311122 | SRP484717 | Illumina NovaSeq 6000 | SRS20187450 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025069 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_43 (21PG51-2) | SAMN39503773 | 17/02/2025 | ||||||||||
| 238 | SRX23311123 | SRP484717 | Illumina NovaSeq 6000 | SRS20187452 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025070 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_44 (21PG51-2) | SAMN39503772 | 17/02/2025 | ||||||||||
| 239 | SRX23311124 | SRP484717 | Illumina NovaSeq 6000 | SRS20187451 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025071 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_45 (21PG51-2) | SAMN39503771 | 17/02/2025 | ||||||||||
| 240 | SRX23311125 | SRP484717 | Illumina NovaSeq 6000 | SRS20187453 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025072 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_46 (21PG51-2) | SAMN39503770 | 17/02/2025 | ||||||||||
| 241 | SRX23311126 | SRP484717 | Illumina NovaSeq 6000 | SRS20187455 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025073 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_47 (21PG51-2) | SAMN39503769 | 17/02/2025 | ||||||||||
| 242 | SRX23311127 | SRP484717 | Illumina NovaSeq 6000 | SRS20187454 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025074 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_48 (21PG51-2) | SAMN39503768 | 17/02/2025 | ||||||||||
| 243 | SRX23311128 | SRP484717 | Illumina NovaSeq 6000 | SRS20187456 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025075 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_49 (21PG51-2) | SAMN39503767 | 17/02/2025 | ||||||||||
| 244 | SRX23310892 | SRP484717 | Illumina NovaSeq 6000 | SRS20187220 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025076 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_5 (21PG50-2) | SAMN39503766 | 17/02/2025 | ||||||||||
| 245 | SRX23310893 | SRP484717 | Illumina NovaSeq 6000 | SRS20187221 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025077 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_50 (21PG51-2) | SAMN39503765 | 17/02/2025 | ||||||||||
| 246 | SRX23310894 | SRP484717 | Illumina NovaSeq 6000 | SRS20187222 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025078 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_51 (21PG51-2) | SAMN39503764 | 17/02/2025 | ||||||||||
| 247 | SRX23310895 | SRP484717 | Illumina NovaSeq 6000 | SRS20187224 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025079 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_52 (21PG51-2) | SAMN39503763 | 17/02/2025 | ||||||||||
| 248 | SRX23310896 | SRP484717 | Illumina NovaSeq 6000 | SRS20187223 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025080 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_53 (21PG51-2) | SAMN39503762 | 17/02/2025 | ||||||||||
| 249 | SRX23310897 | SRP484717 | Illumina NovaSeq 6000 | SRS20187226 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025081 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_54 (21PG51-2) | SAMN39503761 | 17/02/2025 | ||||||||||
| 250 | SRX23310898 | SRP484717 | Illumina NovaSeq 6000 | SRS20187225 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025082 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_55 (21PG51-2) | SAMN39503760 | 17/02/2025 | ||||||||||
| 251 | SRX23310899 | SRP484717 | Illumina NovaSeq 6000 | SRS20187227 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025083 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_56 (21PG51-2) | SAMN39503759 | 17/02/2025 | ||||||||||
| 252 | SRX23311072 | SRP484717 | Illumina NovaSeq 6000 | SRS20187401 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025084 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_57 (21PG51-2) | SAMN39503758 | 17/02/2025 | ||||||||||
| 253 | SRX23311073 | SRP484717 | Illumina NovaSeq 6000 | SRS20187402 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025085 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_58 (21PG51-2) | SAMN39503757 | 17/02/2025 | ||||||||||
| 254 | SRX23311074 | SRP484717 | Illumina NovaSeq 6000 | SRS20187400 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025086 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_59 (21PG51-2) | SAMN39503756 | 17/02/2025 | ||||||||||
| 255 | SRX23311075 | SRP484717 | Illumina NovaSeq 6000 | SRS20187403 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025087 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_6 (21PG50-2) | SAMN39503755 | 17/02/2025 | ||||||||||
| 256 | SRX23311076 | SRP484717 | Illumina NovaSeq 6000 | SRS20187405 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025088 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_60 (21PG51-2) | SAMN39503754 | 17/02/2025 | ||||||||||
| 257 | SRX23311077 | SRP484717 | Illumina NovaSeq 6000 | SRS20187404 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025089 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_61 (21PG51-2) | SAMN39503753 | 17/02/2025 | ||||||||||
| 258 | SRX23311078 | SRP484717 | Illumina NovaSeq 6000 | SRS20187406 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025090 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_62 (21PG51-3) | SAMN39503752 | 17/02/2025 | ||||||||||
| 259 | SRX23311079 | SRP484717 | Illumina NovaSeq 6000 | SRS20187408 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025091 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_63 (21PG51-3) | SAMN39503751 | 17/02/2025 | ||||||||||
| 260 | SRX23311464 | SRP484717 | Illumina NovaSeq 6000 | SRS20187792 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025092 | Early blastocyst: E4.5 | ICM: PE | Early blastocyst: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_64 (21PG51-3) | SAMN39503750 | 17/02/2025 | ||||||||||
| 261 | SRX23311465 | SRP484717 | Illumina NovaSeq 6000 | SRS20187793 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025093 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_65 (21PG51-3) | SAMN39503749 | 17/02/2025 | ||||||||||
| 262 | SRX23311466 | SRP484717 | Illumina NovaSeq 6000 | SRS20187794 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025094 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_66 (21PG51-3) | SAMN39503748 | 17/02/2025 | ||||||||||
| 263 | SRX23311467 | SRP484717 | Illumina NovaSeq 6000 | SRS20187797 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025095 | Early blastocyst: E4.5 | ICM: ICM | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_67 (21PG51-3) | SAMN39503747 | 17/02/2025 | ||||||||||
| 264 | SRX23311468 | SRP484717 | Illumina NovaSeq 6000 | SRS20187795 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025096 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_68 (21PG51-3) | SAMN39503746 | 17/02/2025 | ||||||||||
| 265 | SRX23311469 | SRP484717 | Illumina NovaSeq 6000 | SRS20187796 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025097 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_69 (21PG51-3) | SAMN39503745 | 17/02/2025 | ||||||||||
| 266 | SRX23311470 | SRP484717 | Illumina NovaSeq 6000 | SRS20187798 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025098 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_7 (21PG50-2) | SAMN39503744 | 17/02/2025 | ||||||||||
| 267 | SRX23311471 | SRP484717 | Illumina NovaSeq 6000 | SRS20187799 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025099 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_70 (21PG51-3) | SAMN39503743 | 17/02/2025 | ||||||||||
| 268 | SRX23311129 | SRP484717 | Illumina NovaSeq 6000 | SRS20187457 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025100 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_71 (21PG51-3) | SAMN39503742 | 17/02/2025 | ||||||||||
| 269 | SRX23311130 | SRP484717 | Illumina NovaSeq 6000 | SRS20187458 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025101 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_72 (21PG51-3) | SAMN39503741 | 17/02/2025 | ||||||||||
| 270 | SRX23311131 | SRP484717 | Illumina NovaSeq 6000 | SRS20187459 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025102 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_73 (21PG51-3) | SAMN39503740 | 17/02/2025 | ||||||||||
| 271 | SRX23311132 | SRP484717 | Illumina NovaSeq 6000 | SRS20187461 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025103 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_74 (21PG76-1) | SAMN39503739 | 17/02/2025 | ||||||||||
| 272 | SRX23311133 | SRP484717 | Illumina NovaSeq 6000 | SRS20187460 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025104 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_75 (21PG76-1) | SAMN39503738 | 17/02/2025 | ||||||||||
| 273 | SRX23311134 | SRP484717 | Illumina NovaSeq 6000 | SRS20187462 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025105 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_76 (21PG76-1) | SAMN39503737 | 17/02/2025 | ||||||||||
| 274 | SRX23310901 | SRP484717 | Illumina NovaSeq 6000 | SRS20187229 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025109 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_8 (21PG50-2) | SAMN39503733 | 17/02/2025 | ||||||||||
| 275 | SRX23310902 | SRP484717 | Illumina NovaSeq 6000 | SRS20187230 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025110 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_80 (21PG76-2) | SAMN39503732 | 17/02/2025 | ||||||||||
| 276 | SRX23311082 | SRP484717 | Illumina NovaSeq 6000 | SRS20187410 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025118 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_88 (21PG76-2) | SAMN39503724 | 17/02/2025 | ||||||||||
| 277 | SRX23311083 | SRP484717 | Illumina NovaSeq 6000 | SRS20187412 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025119 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_89 (21PG76-2) | SAMN39503723 | 17/02/2025 | ||||||||||
| 278 | SRX23311084 | SRP484717 | Illumina NovaSeq 6000 | SRS20187413 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025120 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_9 (21PG39-1) | SAMN39503722 | 17/02/2025 | ||||||||||
| 279 | SRX23311085 | SRP484717 | Illumina NovaSeq 6000 | SRS20187414 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025121 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_90 (21PG76-2) | SAMN39503721 | 17/02/2025 | ||||||||||
| 280 | SRX23311472 | SRP484717 | Illumina NovaSeq 6000 | SRS20187800 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025124 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_93 (21PG76-2) | SAMN39503718 | 17/02/2025 | ||||||||||
| 281 | SRX23311473 | SRP484717 | Illumina NovaSeq 6000 | SRS20187803 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025125 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_94 (21PG76-2) | SAMN39503717 | 17/02/2025 | ||||||||||
| 282 | SRX23311475 | SRP484717 | Illumina NovaSeq 6000 | SRS20187804 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025127 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_96 (21PG76-2) | SAMN39503715 | 17/02/2025 | ||||||||||
| 283 | SRX23311476 | SRP484717 | Illumina NovaSeq 6000 | SRS20187802 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025128 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_97 (21PG55-2) | SAMN39503714 | 17/02/2025 | ||||||||||
| 284 | SRX23311477 | SRP484717 | Illumina NovaSeq 6000 | SRS20187805 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025129 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_98 (21PG55-2) | SAMN39503713 | 17/02/2025 | ||||||||||
| 285 | SRX23311478 | SRP484717 | Illumina NovaSeq 6000 | SRS20187806 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025130 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_99 (21PG55-2) | SAMN39503712 | 17/02/2025 | ||||||||||
| 286 | SRX23311479 | SRP484717 | Illumina NovaSeq 6000 | SRS20187808 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025131 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_1 (21PG50-3) | SAMN39503711 | 17/02/2025 | ||||||||||
| 287 | SRX23311137 | SRP484717 | Illumina NovaSeq 6000 | SRS20187463 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025132 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_10 (21PG77-1) | SAMN39503710 | 17/02/2025 | ||||||||||
| 288 | SRX23311138 | SRP484717 | Illumina NovaSeq 6000 | SRS20187466 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025133 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_100 (21PG55-3) | SAMN39503709 | 17/02/2025 | ||||||||||
| 289 | SRX23311139 | SRP484717 | Illumina NovaSeq 6000 | SRS20187467 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025134 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_101 (21PG55-3) | SAMN39503708 | 17/02/2025 | ||||||||||
| 290 | SRX23311140 | SRP484717 | Illumina NovaSeq 6000 | SRS20187469 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025135 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_102 (21PG55-3) | SAMN39503707 | 17/02/2025 | ||||||||||
| 291 | SRX23311141 | SRP484717 | Illumina NovaSeq 6000 | SRS20187470 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025136 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_103 (21PG55-3) | SAMN39503706 | 17/02/2025 | ||||||||||
| 292 | SRX23311142 | SRP484717 | Illumina NovaSeq 6000 | SRS20187468 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025137 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_104 (21PG55-3) | SAMN39503705 | 17/02/2025 | ||||||||||
| 293 | SRX23311143 | SRP484717 | Illumina NovaSeq 6000 | SRS20187472 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025138 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_105 (21PG55-3) | SAMN39503704 | 17/02/2025 | ||||||||||
| 294 | SRX23311144 | SRP484717 | Illumina NovaSeq 6000 | SRS20187471 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025139 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_106 (21PG55-3) | SAMN39503703 | 17/02/2025 | ||||||||||
| 295 | SRX23310908 | SRP484717 | Illumina NovaSeq 6000 | SRS20187237 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025140 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_107 (21PG55-3) | SAMN39503702 | 17/02/2025 | ||||||||||
| 296 | SRX23310909 | SRP484717 | Illumina NovaSeq 6000 | SRS20187236 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025141 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_108 (21PG55-3) | SAMN39503701 | 17/02/2025 | ||||||||||
| 297 | SRX23310910 | SRP484717 | Illumina NovaSeq 6000 | SRS20187238 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025142 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_109 (21PG55-3) | SAMN39503700 | 17/02/2025 | ||||||||||
| 298 | SRX23310911 | SRP484717 | Illumina NovaSeq 6000 | SRS20187239 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025143 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_11 (21PG77-1) | SAMN39503699 | 17/02/2025 | ||||||||||
| 299 | SRX23311312 | SRP484717 | Illumina NovaSeq 6000 | SRS20187640 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025144 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_110 (21PG55-3) | SAMN39503698 | 17/02/2025 | ||||||||||
| 300 | SRX23311313 | SRP484717 | Illumina NovaSeq 6000 | SRS20187641 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025145 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_111 (21PG55-3) | SAMN39503697 | 17/02/2025 | ||||||||||
| 301 | SRX23311314 | SRP484717 | Illumina NovaSeq 6000 | SRS20187643 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025146 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_112 (21PG55-3) | SAMN39503696 | 17/02/2025 | ||||||||||
| 302 | SRX23311175 | SRP484717 | Illumina NovaSeq 6000 | SRS20187504 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025148 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_114 (21PG55-3) | SAMN39503694 | 17/02/2025 | ||||||||||
| 303 | SRX23311176 | SRP484717 | Illumina NovaSeq 6000 | SRS20187503 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025149 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_115 (21PG55-3) | SAMN39503693 | 17/02/2025 | ||||||||||
| 304 | SRX23311177 | SRP484717 | Illumina NovaSeq 6000 | SRS20187505 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025150 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_116 (21PG49-1) | SAMN39503692 | 17/02/2025 | ||||||||||
| 305 | SRX23311178 | SRP484717 | Illumina NovaSeq 6000 | SRS20187506 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025151 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_117 (21PG49-1) | SAMN39503691 | 17/02/2025 | ||||||||||
| 306 | SRX23311179 | SRP484717 | Illumina NovaSeq 6000 | SRS20187507 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025152 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_118 (21PG49-1) | SAMN39503690 | 17/02/2025 | ||||||||||
| 307 | SRX23311180 | SRP484717 | Illumina NovaSeq 6000 | SRS20187508 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025153 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_119 (21PG49-1) | SAMN39503689 | 17/02/2025 | ||||||||||
| 308 | SRX23311181 | SRP484717 | Illumina NovaSeq 6000 | SRS20187509 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025154 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_12 (21PG77-1) | SAMN39503688 | 17/02/2025 | ||||||||||
| 309 | SRX23311182 | SRP484717 | Illumina NovaSeq 6000 | SRS20187510 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025155 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_120 (21PG49-1) | SAMN39503687 | 17/02/2025 | ||||||||||
| 310 | SRX23311480 | SRP484717 | Illumina NovaSeq 6000 | SRS20187807 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025156 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_121 (21PG49-1) | SAMN39503686 | 17/02/2025 | ||||||||||
| 311 | SRX23311481 | SRP484717 | Illumina NovaSeq 6000 | SRS20187809 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025157 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_122 (21PG49-1) | SAMN39503685 | 17/02/2025 | ||||||||||
| 312 | SRX23311483 | SRP484717 | Illumina NovaSeq 6000 | SRS20187811 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025159 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_124 (21PG49-1) | SAMN39503683 | 17/02/2025 | ||||||||||
| 313 | SRX23311484 | SRP484717 | Illumina NovaSeq 6000 | SRS20187812 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025160 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_125 (21PG49-1) | SAMN39503682 | 17/02/2025 | ||||||||||
| 314 | SRX23311485 | SRP484717 | Illumina NovaSeq 6000 | SRS20187813 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025161 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_126 (21PG49-1) | SAMN39503681 | 17/02/2025 | ||||||||||
| 315 | SRX23310912 | SRP484717 | Illumina NovaSeq 6000 | SRS20187240 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025162 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_127 (21PG49-1) | SAMN39503680 | 17/02/2025 | ||||||||||
| 316 | SRX23310913 | SRP484717 | Illumina NovaSeq 6000 | SRS20187241 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025163 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_128 (21PG49-1) | SAMN39503679 | 17/02/2025 | ||||||||||
| 317 | SRX23311146 | SRP484717 | Illumina NovaSeq 6000 | SRS20187474 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025165 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_13 (21PG77-1) | SAMN39503677 | 17/02/2025 | ||||||||||
| 318 | SRX23311148 | SRP484717 | Illumina NovaSeq 6000 | SRS20187475 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025167 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_131 (21PG49-2) | SAMN39503675 | 17/02/2025 | ||||||||||
| 319 | SRX23311149 | SRP484717 | Illumina NovaSeq 6000 | SRS20187480 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025168 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_132 (21PG49-2) | SAMN39503674 | 17/02/2025 | ||||||||||
| 320 | SRX23311150 | SRP484717 | Illumina NovaSeq 6000 | SRS20187479 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025169 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_133 (21PG49-2) | SAMN39503673 | 17/02/2025 | ||||||||||
| 321 | SRX23311151 | SRP484717 | Illumina NovaSeq 6000 | SRS20187477 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025170 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_134 (21PG49-2) | SAMN39503672 | 17/02/2025 | ||||||||||
| 322 | SRX23311152 | SRP484717 | Illumina NovaSeq 6000 | SRS20187478 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025171 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_135 (21PG49-2) | SAMN39503671 | 17/02/2025 | ||||||||||
| 323 | SRX23311316 | SRP484717 | Illumina NovaSeq 6000 | SRS20187642 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025172 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_136 (21PG49-2) | SAMN39503670 | 17/02/2025 | ||||||||||
| 324 | SRX23311317 | SRP484717 | Illumina NovaSeq 6000 | SRS20187645 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025173 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_137 (21PG49-2) | SAMN39503669 | 17/02/2025 | ||||||||||
| 325 | SRX23311318 | SRP484717 | Illumina NovaSeq 6000 | SRS20187646 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025174 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_138 (21PG49-2) | SAMN39503668 | 17/02/2025 | ||||||||||
| 326 | SRX23311319 | SRP484717 | Illumina NovaSeq 6000 | SRS20187648 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025175 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_139 (21PG49-2) | SAMN39503667 | 17/02/2025 | ||||||||||
| 327 | SRX23311320 | SRP484717 | Illumina NovaSeq 6000 | SRS20187647 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025176 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_14 (21PG77-1) | SAMN39503666 | 17/02/2025 | ||||||||||
| 328 | SRX23311321 | SRP484717 | Illumina NovaSeq 6000 | SRS20187649 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025177 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_140 (21PG49-2) | SAMN39503665 | 17/02/2025 | ||||||||||
| 329 | SRX23311322 | SRP484717 | Illumina NovaSeq 6000 | SRS20187650 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025178 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_141 (21PG53-2) | SAMN39503664 | 17/02/2025 | ||||||||||
| 330 | SRX23311323 | SRP484717 | Illumina NovaSeq 6000 | SRS20187652 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025179 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_142 (21PG53-2) | SAMN39503663 | 17/02/2025 | ||||||||||
| 331 | SRX23311183 | SRP484717 | Illumina NovaSeq 6000 | SRS20187511 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025180 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_143 (21PG53-2) | SAMN39503662 | 17/02/2025 | ||||||||||
| 332 | SRX23311184 | SRP484717 | Illumina NovaSeq 6000 | SRS20187512 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025181 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_144 (21PG53-2) | SAMN39503661 | 17/02/2025 | ||||||||||
| 333 | SRX23311185 | SRP484717 | Illumina NovaSeq 6000 | SRS20187514 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025182 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_145 (21PG53-2) | SAMN39503660 | 17/02/2025 | ||||||||||
| 334 | SRX23311186 | SRP484717 | Illumina NovaSeq 6000 | SRS20187513 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025183 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_146 (21PG53-2) | SAMN39503659 | 17/02/2025 | ||||||||||
| 335 | SRX23311187 | SRP484717 | Illumina NovaSeq 6000 | SRS20187518 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025184 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_147 (21PG53-2) | SAMN39503658 | 17/02/2025 | ||||||||||
| 336 | SRX23311188 | SRP484717 | Illumina NovaSeq 6000 | SRS20187515 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025185 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_148 (21PG53-2) | SAMN39503657 | 17/02/2025 | ||||||||||
| 337 | SRX23311189 | SRP484717 | Illumina NovaSeq 6000 | SRS20187516 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025186 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_149 (21PG53-2) | SAMN39503656 | 17/02/2025 | ||||||||||
| 338 | SRX23311190 | SRP484717 | Illumina NovaSeq 6000 | SRS20187519 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025187 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_15 (21PG77-1) | SAMN39503655 | 17/02/2025 | ||||||||||
| 339 | SRX23310914 | SRP484717 | Illumina NovaSeq 6000 | SRS20187242 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025188 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_150 (21PG53-2) | SAMN39503654 | 17/02/2025 | ||||||||||
| 340 | SRX23310915 | SRP484717 | Illumina NovaSeq 6000 | SRS20187243 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025189 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_151 (21PG53-2) | SAMN39503653 | 17/02/2025 | ||||||||||
| 341 | SRX23310916 | SRP484717 | Illumina NovaSeq 6000 | SRS20187244 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025190 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_152 (21PG53-2) | SAMN39503652 | 17/02/2025 | ||||||||||
| 342 | SRX23310917 | SRP484717 | Illumina NovaSeq 6000 | SRS20187245 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025191 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_153 (21PG53-2) | SAMN39503651 | 17/02/2025 | ||||||||||
| 343 | SRX23310918 | SRP484717 | Illumina NovaSeq 6000 | SRS20187246 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025192 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_154 (21PG53-2) | SAMN39503650 | 17/02/2025 | ||||||||||
| 344 | SRX23310919 | SRP484717 | Illumina NovaSeq 6000 | SRS20187247 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025193 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_155 (21PG53-2) | SAMN39503649 | 17/02/2025 | ||||||||||
| 345 | SRX23310920 | SRP484717 | Illumina NovaSeq 6000 | SRS20187248 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025194 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_156 (21PG53-2) | SAMN39503648 | 17/02/2025 | ||||||||||
| 346 | SRX23310921 | SRP484717 | Illumina NovaSeq 6000 | SRS20187249 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025195 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_157 (21PG53-2) | SAMN39503647 | 17/02/2025 | ||||||||||
| 347 | SRX23311153 | SRP484717 | Illumina NovaSeq 6000 | SRS20187481 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025196 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_158 (21PG53-2) | SAMN39503646 | 17/02/2025 | ||||||||||
| 348 | SRX23311154 | SRP484717 | Illumina NovaSeq 6000 | SRS20187482 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025197 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_159 (21PG53-2) | SAMN39503645 | 17/02/2025 | ||||||||||
| 349 | SRX23311155 | SRP484717 | Illumina NovaSeq 6000 | SRS20187483 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025198 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_16 (21PG77-1) | SAMN39503644 | 17/02/2025 | ||||||||||
| 350 | SRX23311156 | SRP484717 | Illumina NovaSeq 6000 | SRS20187484 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025199 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_160 (21PG53-2) | SAMN39503643 | 17/02/2025 | ||||||||||
| 351 | SRX23311157 | SRP484717 | Illumina NovaSeq 6000 | SRS20187485 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025200 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_161 (21PG53-2) | SAMN39503642 | 17/02/2025 | ||||||||||
| 352 | SRX23311158 | SRP484717 | Illumina NovaSeq 6000 | SRS20187486 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025201 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_162 (21PG53-2) | SAMN39503641 | 17/02/2025 | ||||||||||
| 353 | SRX23311159 | SRP484717 | Illumina NovaSeq 6000 | SRS20187487 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025202 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_163 (21PG53-2) | SAMN39503640 | 17/02/2025 | ||||||||||
| 354 | SRX23311160 | SRP484717 | Illumina NovaSeq 6000 | SRS20187488 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025203 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_164 (21PG53-2) | SAMN39503639 | 17/02/2025 | ||||||||||
| 355 | SRX23311324 | SRP484717 | Illumina NovaSeq 6000 | SRS20187651 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025204 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_165 (21PG53-2) | SAMN39503638 | 17/02/2025 | ||||||||||
| 356 | SRX23311325 | SRP484717 | Illumina NovaSeq 6000 | SRS20187653 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025205 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_166 (21PG53-2) | SAMN39503637 | 17/02/2025 | ||||||||||
| 357 | SRX23311326 | SRP484717 | Illumina NovaSeq 6000 | SRS20187655 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025206 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_167 (21PG53-2) | SAMN39503636 | 17/02/2025 | ||||||||||
| 358 | SRX23311327 | SRP484717 | Illumina NovaSeq 6000 | SRS20187654 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025207 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_168 (21PG32-2) | SAMN39503635 | 17/02/2025 | ||||||||||
| 359 | SRX23311328 | SRP484717 | Illumina NovaSeq 6000 | SRS20187661 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025208 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_169 (21PG32-2) | SAMN39503634 | 17/02/2025 | ||||||||||
| 360 | SRX23311329 | SRP484717 | Illumina NovaSeq 6000 | SRS20187662 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025209 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_17 (21PG77-1) | SAMN39503633 | 17/02/2025 | ||||||||||
| 361 | SRX23311330 | SRP484717 | Illumina NovaSeq 6000 | SRS20187656 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025210 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_170 (21PG32-2) | SAMN39503632 | 17/02/2025 | ||||||||||
| 362 | SRX23311331 | SRP484717 | Illumina NovaSeq 6000 | SRS20187659 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025211 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_171 (21PG32-2) | SAMN39503631 | 17/02/2025 | ||||||||||
| 363 | SRX23311191 | SRP484717 | Illumina NovaSeq 6000 | SRS20187517 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025212 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_172 (21PG32-2) | SAMN39503630 | 17/02/2025 | ||||||||||
| 364 | SRX23311192 | SRP484717 | Illumina NovaSeq 6000 | SRS20187520 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025213 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_173 (21PG32-2) | SAMN39503629 | 17/02/2025 | ||||||||||
| 365 | SRX23311193 | SRP484717 | Illumina NovaSeq 6000 | SRS20187521 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025214 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_174 (21PG32-2) | SAMN39503628 | 17/02/2025 | ||||||||||
| 366 | SRX23311194 | SRP484717 | Illumina NovaSeq 6000 | SRS20187522 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025215 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_175 (21PG32-2) | SAMN39503627 | 17/02/2025 | ||||||||||
| 367 | SRX23311195 | SRP484717 | Illumina NovaSeq 6000 | SRS20187525 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025216 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_176 (21PG32-2) | SAMN39503626 | 17/02/2025 | ||||||||||
| 368 | SRX23311196 | SRP484717 | Illumina NovaSeq 6000 | SRS20187524 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025217 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_177 (21PG32-2) | SAMN39503625 | 17/02/2025 | ||||||||||
| 369 | SRX23311197 | SRP484717 | Illumina NovaSeq 6000 | SRS20187523 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025218 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_178 (21PG32-2) | SAMN39503624 | 17/02/2025 | ||||||||||
| 370 | SRX23311198 | SRP484717 | Illumina NovaSeq 6000 | SRS20187527 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025219 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_179 (21PG32-2) | SAMN39503623 | 17/02/2025 | ||||||||||
| 371 | SRX23310922 | SRP484717 | Illumina NovaSeq 6000 | SRS20187250 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025220 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_18 (21PG77-1) | SAMN39503622 | 17/02/2025 | ||||||||||
| 372 | SRX23310923 | SRP484717 | Illumina NovaSeq 6000 | SRS20187252 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025221 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_180 (21PG32-2) | SAMN39503621 | 17/02/2025 | ||||||||||
| 373 | SRX23310924 | SRP484717 | Illumina NovaSeq 6000 | SRS20187253 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025222 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_19 (21PG77-1) | SAMN39503620 | 17/02/2025 | ||||||||||
| 374 | SRX23310925 | SRP484717 | Illumina NovaSeq 6000 | SRS20187251 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025223 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_191 (21PG49-1) | SAMN39503619 | 17/02/2025 | ||||||||||
| 375 | SRX23310926 | SRP484717 | Illumina NovaSeq 6000 | SRS20187254 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025224 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_192 (21PG49-1) | SAMN39503618 | 17/02/2025 | ||||||||||
| 376 | SRX23310927 | SRP484717 | Illumina NovaSeq 6000 | SRS20187255 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025225 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_193 (21PG57-2) | SAMN39503617 | 17/02/2025 | ||||||||||
| 377 | SRX23310928 | SRP484717 | Illumina NovaSeq 6000 | SRS20187256 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025226 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_194 (21PG57-2) | SAMN39503616 | 17/02/2025 | ||||||||||
| 378 | SRX23310929 | SRP484717 | Illumina NovaSeq 6000 | SRS20187258 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025227 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_195 (21PG57-2) | SAMN39503615 | 17/02/2025 | ||||||||||
| 379 | SRX23311161 | SRP484717 | Illumina NovaSeq 6000 | SRS20187490 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025228 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_196 (21PG57-2) | SAMN39503614 | 17/02/2025 | ||||||||||
| 380 | SRX23311163 | SRP484717 | Illumina NovaSeq 6000 | SRS20187492 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025230 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_198 (21PG57-2) | SAMN39503612 | 17/02/2025 | ||||||||||
| 381 | SRX23311164 | SRP484717 | Illumina NovaSeq 6000 | SRS20187494 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025231 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_199 (21PG57-2) | SAMN39503611 | 17/02/2025 | ||||||||||
| 382 | SRX23311165 | SRP484717 | Illumina NovaSeq 6000 | SRS20187493 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025232 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_2 (21PG50-3) | SAMN39503610 | 17/02/2025 | ||||||||||
| 383 | SRX23311166 | SRP484717 | Illumina NovaSeq 6000 | SRS20187491 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025233 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_20 (21PG77-1) | SAMN39503609 | 17/02/2025 | ||||||||||
| 384 | SRX23311167 | SRP484717 | Illumina NovaSeq 6000 | SRS20187495 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025234 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_200 (21PG57-2) | SAMN39503608 | 17/02/2025 | ||||||||||
| 385 | SRX23311332 | SRP484717 | Illumina NovaSeq 6000 | SRS20187657 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025236 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_202 (21PG57-2) | SAMN39503606 | 17/02/2025 | ||||||||||
| 386 | SRX23311333 | SRP484717 | Illumina NovaSeq 6000 | SRS20187658 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025237 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_203 (21PG57-2) | SAMN39503605 | 17/02/2025 | ||||||||||
| 387 | SRX23311335 | SRP484717 | Illumina NovaSeq 6000 | SRS20187663 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025239 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_205 (21PG57-2) | SAMN39503603 | 17/02/2025 | ||||||||||
| 388 | SRX23311336 | SRP484717 | Illumina NovaSeq 6000 | SRS20187664 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025240 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_206 (21PG57-2) | SAMN39503602 | 17/02/2025 | ||||||||||
| 389 | SRX23311337 | SRP484717 | Illumina NovaSeq 6000 | SRS20187665 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025241 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_207 (21PG57-2) | SAMN39503601 | 17/02/2025 | ||||||||||
| 390 | SRX23311338 | SRP484717 | Illumina NovaSeq 6000 | SRS20187666 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025242 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_208 (21PG57-2) | SAMN39503600 | 17/02/2025 | ||||||||||
| 391 | SRX23311339 | SRP484717 | Illumina NovaSeq 6000 | SRS20187667 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025243 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_209 (21PG75-4) | SAMN39503599 | 17/02/2025 | ||||||||||
| 392 | SRX23311199 | SRP484717 | Illumina NovaSeq 6000 | SRS20187526 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025244 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_21 (21PG77-1) | SAMN39503598 | 17/02/2025 | ||||||||||
| 393 | SRX23311200 | SRP484717 | Illumina NovaSeq 6000 | SRS20187528 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025245 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_210 (21PG75-4) | SAMN39503597 | 17/02/2025 | ||||||||||
| 394 | SRX23311201 | SRP484717 | Illumina NovaSeq 6000 | SRS20187530 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025246 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_211 (21PG75-4) | SAMN39503596 | 17/02/2025 | ||||||||||
| 395 | SRX23311202 | SRP484717 | Illumina NovaSeq 6000 | SRS20187532 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025247 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_212 (21PG75-4) | SAMN39503595 | 17/02/2025 | ||||||||||
| 396 | SRX23311203 | SRP484717 | Illumina NovaSeq 6000 | SRS20187531 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025248 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_213 (21PG75-4) | SAMN39503594 | 17/02/2025 | ||||||||||
| 397 | SRX23311204 | SRP484717 | Illumina NovaSeq 6000 | SRS20187529 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025249 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_214 (21PG75-4) | SAMN39503593 | 17/02/2025 | ||||||||||
| 398 | SRX23311205 | SRP484717 | Illumina NovaSeq 6000 | SRS20187534 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025250 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_215 (21PG75-4) | SAMN39503592 | 17/02/2025 | ||||||||||
| 399 | SRX23311206 | SRP484717 | Illumina NovaSeq 6000 | SRS20187533 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025251 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_216 (21PG75-4) | SAMN39503591 | 17/02/2025 | ||||||||||
| 400 | SRX23311169 | SRP484717 | Illumina NovaSeq 6000 | SRS20187497 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025252 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_217 (21PG75-4) | SAMN39503590 | 17/02/2025 | ||||||||||
| 401 | SRX23311170 | SRP484717 | Illumina NovaSeq 6000 | SRS20187498 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025253 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_218 (21PG75-4) | SAMN39503589 | 17/02/2025 | ||||||||||
| 402 | SRX23311171 | SRP484717 | Illumina NovaSeq 6000 | SRS20187500 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025254 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_219 (21PG75-4) | SAMN39503588 | 17/02/2025 | ||||||||||
| 403 | SRX23311172 | SRP484717 | Illumina NovaSeq 6000 | SRS20187499 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025255 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_22 (21PG77-1) | SAMN39503587 | 17/02/2025 | ||||||||||
| 404 | SRX23311260 | SRP484717 | Illumina NovaSeq 6000 | SRS20187592 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025256 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_220 (21PG75-4) | SAMN39503586 | 17/02/2025 | ||||||||||
| 405 | SRX23311261 | SRP484717 | Illumina NovaSeq 6000 | SRS20187587 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025257 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_221 (21PG75-4) | SAMN39503585 | 17/02/2025 | ||||||||||
| 406 | SRX23311262 | SRP484717 | Illumina NovaSeq 6000 | SRS20187588 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025258 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_222 (21PG75-4) | SAMN39503584 | 17/02/2025 | ||||||||||
| 407 | SRX23311263 | SRP484717 | Illumina NovaSeq 6000 | SRS20187598 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025259 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_223 (21PG75-4) | SAMN39503583 | 17/02/2025 | ||||||||||
| 408 | SRX23311341 | SRP484717 | Illumina NovaSeq 6000 | SRS20187670 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025261 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_225 (21PG75-4) | SAMN39503581 | 17/02/2025 | ||||||||||
| 409 | SRX23311342 | SRP484717 | Illumina NovaSeq 6000 | SRS20187669 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025262 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_226 (21PG75-4) | SAMN39503580 | 17/02/2025 | ||||||||||
| 410 | SRX23311343 | SRP484717 | Illumina NovaSeq 6000 | SRS20187671 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025263 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_227 (21PG75-4) | SAMN39503579 | 17/02/2025 | ||||||||||
| 411 | SRX23311345 | SRP484717 | Illumina NovaSeq 6000 | SRS20187673 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025265 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_23 (21PG77-1) | SAMN39503577 | 17/02/2025 | ||||||||||
| 412 | SRX23311346 | SRP484717 | Illumina NovaSeq 6000 | SRS20187675 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025266 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_24 (21PG77-1) | SAMN39503576 | 17/02/2025 | ||||||||||
| 413 | SRX23311347 | SRP484717 | Illumina NovaSeq 6000 | SRS20187676 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025267 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_25 (21PG40-2) | SAMN39503575 | 17/02/2025 | ||||||||||
| 414 | SRX23311207 | SRP484717 | Illumina NovaSeq 6000 | SRS20187538 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025268 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_26 (21PG40-2) | SAMN39503574 | 17/02/2025 | ||||||||||
| 415 | SRX23311211 | SRP484717 | Illumina NovaSeq 6000 | SRS20187536 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025272 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_269 (21PG76-2) | SAMN39503570 | 17/02/2025 | ||||||||||
| 416 | SRX23311212 | SRP484717 | Illumina NovaSeq 6000 | SRS20187540 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025273 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_27 (21PG40-2) | SAMN39503569 | 17/02/2025 | ||||||||||
| 417 | SRX23311213 | SRP484717 | Illumina NovaSeq 6000 | SRS20187541 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025274 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_270 (21PG76-2) | SAMN39503568 | 17/02/2025 | ||||||||||
| 418 | SRX23311214 | SRP484717 | Illumina NovaSeq 6000 | SRS20187544 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025275 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_271 (21PG76-2) | SAMN39503567 | 17/02/2025 | ||||||||||
| 419 | SRX23310935 | SRP484717 | Illumina NovaSeq 6000 | SRS20187263 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025281 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_277 (21PG76-2) | SAMN39503561 | 17/02/2025 | ||||||||||
| 420 | SRX23311264 | SRP484717 | Illumina NovaSeq 6000 | SRS20187589 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025284 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_28 (21PG40-2) | SAMN39503558 | 17/02/2025 | ||||||||||
| 421 | SRX23311266 | SRP484717 | Illumina NovaSeq 6000 | SRS20187594 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025286 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_281 (21PG45-2) | SAMN39503556 | 17/02/2025 | ||||||||||
| 422 | SRX23311348 | SRP484717 | Illumina NovaSeq 6000 | SRS20187674 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025292 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_287 (21PG45-2) | SAMN39503550 | 17/02/2025 | ||||||||||
| 423 | SRX23311350 | SRP484717 | Illumina NovaSeq 6000 | SRS20187677 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025294 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_289 (21PG35-1) | SAMN39503548 | 17/02/2025 | ||||||||||
| 424 | SRX23311351 | SRP484717 | Illumina NovaSeq 6000 | SRS20187678 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025295 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_29 (21PG40-2) | SAMN39503547 | 17/02/2025 | ||||||||||
| 425 | SRX23311352 | SRP484717 | Illumina NovaSeq 6000 | SRS20187680 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025296 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_290 (21PG35-1) | SAMN39503546 | 17/02/2025 | ||||||||||
| 426 | SRX23311353 | SRP484717 | Illumina NovaSeq 6000 | SRS20187681 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025297 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_291 (21PG35-1) | SAMN39503545 | 17/02/2025 | ||||||||||
| 427 | SRX23311216 | SRP484717 | Illumina NovaSeq 6000 | SRS20187542 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025301 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_295 (21PG35-1) | SAMN39503541 | 17/02/2025 | ||||||||||
| 428 | SRX23311217 | SRP484717 | Illumina NovaSeq 6000 | SRS20187543 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025302 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_296 (21PG65-1) | SAMN39503540 | 17/02/2025 | ||||||||||
| 429 | SRX23311218 | SRP484717 | Illumina NovaSeq 6000 | SRS20187546 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025303 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_297 (21PG65-1) | SAMN39503539 | 17/02/2025 | ||||||||||
| 430 | SRX23311219 | SRP484717 | Illumina NovaSeq 6000 | SRS20187547 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025304 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_298 (21PG65-1) | SAMN39503538 | 17/02/2025 | ||||||||||
| 431 | SRX23311220 | SRP484717 | Illumina NovaSeq 6000 | SRS20187548 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025305 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_299 (21PG65-1) | SAMN39503537 | 17/02/2025 | ||||||||||
| 432 | SRX23311221 | SRP484717 | Illumina NovaSeq 6000 | SRS20187549 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025306 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_3 (21PG50-3) | SAMN39503536 | 17/02/2025 | ||||||||||
| 433 | SRX23311222 | SRP484717 | Illumina NovaSeq 6000 | SRS20187551 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025307 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_30 (21PG40-2) | SAMN39503535 | 17/02/2025 | ||||||||||
| 434 | SRX23310938 | SRP484717 | Illumina NovaSeq 6000 | SRS20187265 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025308 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_300 (21PG65-1) | SAMN39503534 | 17/02/2025 | ||||||||||
| 435 | SRX23310939 | SRP484717 | Illumina NovaSeq 6000 | SRS20187267 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025309 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_301 (21PG65-1) | SAMN39503533 | 17/02/2025 | ||||||||||
| 436 | SRX23310940 | SRP484717 | Illumina NovaSeq 6000 | SRS20187269 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025310 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_302 (21PG65-1) | SAMN39503532 | 17/02/2025 | ||||||||||
| 437 | SRX23310941 | SRP484717 | Illumina NovaSeq 6000 | SRS20187268 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025311 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_303 (21PG65-1) | SAMN39503531 | 17/02/2025 | ||||||||||
| 438 | SRX23310942 | SRP484717 | Illumina NovaSeq 6000 | SRS20187270 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025312 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_304 (21PG65-1) | SAMN39503530 | 17/02/2025 | ||||||||||
| 439 | SRX23310943 | SRP484717 | Illumina NovaSeq 6000 | SRS20187271 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025313 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_305 (21PG65-1) | SAMN39503529 | 17/02/2025 | ||||||||||
| 440 | SRX23310944 | SRP484717 | Illumina NovaSeq 6000 | SRS20187272 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025314 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_306 (21PG65-1) | SAMN39503528 | 17/02/2025 | ||||||||||
| 441 | SRX23310945 | SRP484717 | Illumina NovaSeq 6000 | SRS20187273 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025315 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_307 (21PG65-1) | SAMN39503527 | 17/02/2025 | ||||||||||
| 442 | SRX23311272 | SRP484717 | Illumina NovaSeq 6000 | SRS20187602 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025316 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_308 (21PG65-1) | SAMN39503526 | 17/02/2025 | ||||||||||
| 443 | SRX23311273 | SRP484717 | Illumina NovaSeq 6000 | SRS20187601 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025317 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_309 (21PG65-1) | SAMN39503525 | 17/02/2025 | ||||||||||
| 444 | SRX23311274 | SRP484717 | Illumina NovaSeq 6000 | SRS20187600 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025318 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_31 (21PG40-2) | SAMN39503524 | 17/02/2025 | ||||||||||
| 445 | SRX23311275 | SRP484717 | Illumina NovaSeq 6000 | SRS20187603 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025319 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_310 (21PG65-1) | SAMN39503523 | 17/02/2025 | ||||||||||
| 446 | SRX23311276 | SRP484717 | Illumina NovaSeq 6000 | SRS20187604 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025320 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_311 (21PG65-1) | SAMN39503522 | 17/02/2025 | ||||||||||
| 447 | SRX23311277 | SRP484717 | Illumina NovaSeq 6000 | SRS20187605 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025321 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_312 (21PG65-1) | SAMN39503521 | 17/02/2025 | ||||||||||
| 448 | SRX23311278 | SRP484717 | Illumina NovaSeq 6000 | SRS20187606 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025322 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_313 (21PG65-1) | SAMN39503520 | 17/02/2025 | ||||||||||
| 449 | SRX23311279 | SRP484717 | Illumina NovaSeq 6000 | SRS20187607 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025323 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_314 (21PG65-2) | SAMN39503519 | 17/02/2025 | ||||||||||
| 450 | SRX23311356 | SRP484717 | Illumina NovaSeq 6000 | SRS20187682 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025324 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_315 (21PG65-2) | SAMN39503518 | 17/02/2025 | ||||||||||
| 451 | SRX23311357 | SRP484717 | Illumina NovaSeq 6000 | SRS20187686 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025325 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_316 (21PG65-2) | SAMN39503517 | 17/02/2025 | ||||||||||
| 452 | SRX23311358 | SRP484717 | Illumina NovaSeq 6000 | SRS20187685 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025326 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_317 (21PG65-2) | SAMN39503516 | 17/02/2025 | ||||||||||
| 453 | SRX23311359 | SRP484717 | Illumina NovaSeq 6000 | SRS20187687 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025327 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_318 (21PG65-2) | SAMN39503515 | 17/02/2025 | ||||||||||
| 454 | SRX23311360 | SRP484717 | Illumina NovaSeq 6000 | SRS20187688 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025328 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_319 (21PG65-2) | SAMN39503514 | 17/02/2025 | ||||||||||
| 455 | SRX23311361 | SRP484717 | Illumina NovaSeq 6000 | SRS20187690 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025329 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_32 (21PG40-2) | SAMN39503513 | 17/02/2025 | ||||||||||
| 456 | SRX23311362 | SRP484717 | Illumina NovaSeq 6000 | SRS20187689 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025330 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_320 (21PG65-2) | SAMN39503512 | 17/02/2025 | ||||||||||
| 457 | SRX23311363 | SRP484717 | Illumina NovaSeq 6000 | SRS20187691 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025331 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_321 (21PG65-2) | SAMN39503511 | 17/02/2025 | ||||||||||
| 458 | SRX23311223 | SRP484717 | Illumina NovaSeq 6000 | SRS20187550 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025332 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_322 (21PG65-2) | SAMN39503510 | 17/02/2025 | ||||||||||
| 459 | SRX23311224 | SRP484717 | Illumina NovaSeq 6000 | SRS20187553 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025333 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_323 (20PG3-1) | SAMN39503509 | 17/02/2025 | ||||||||||
| 460 | SRX23310946 | SRP484717 | Illumina NovaSeq 6000 | SRS20187274 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025340 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_33 (21PG40-2) | SAMN39503502 | 17/02/2025 | ||||||||||
| 461 | SRX23310947 | SRP484717 | Illumina NovaSeq 6000 | SRS20187275 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025341 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_330 (20PG3-1) | SAMN39503501 | 17/02/2025 | ||||||||||
| 462 | SRX23310948 | SRP484717 | Illumina NovaSeq 6000 | SRS20187276 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025342 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_331 (20PG3-1) | SAMN39503500 | 17/02/2025 | ||||||||||
| 463 | SRX23310953 | SRP484717 | Illumina NovaSeq 6000 | SRS20187281 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025347 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_336 (20PG3-1) | SAMN39503495 | 17/02/2025 | ||||||||||
| 464 | SRX23311282 | SRP484717 | Illumina NovaSeq 6000 | SRS20187609 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025350 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_339 (20PG3-1) | SAMN39503492 | 17/02/2025 | ||||||||||
| 465 | SRX23311283 | SRP484717 | Illumina NovaSeq 6000 | SRS20187611 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025351 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_34 (21PG40-2) | SAMN39503491 | 17/02/2025 | ||||||||||
| 466 | SRX23311284 | SRP484717 | Illumina NovaSeq 6000 | SRS20187612 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025352 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_340 (20PG3-1) | SAMN39503490 | 17/02/2025 | ||||||||||
| 467 | SRX23311286 | SRP484717 | Illumina NovaSeq 6000 | SRS20187614 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025354 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_342 (20PG3-1) | SAMN39503488 | 17/02/2025 | ||||||||||
| 468 | SRX23311366 | SRP484717 | Illumina NovaSeq 6000 | SRS20187693 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025358 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_346 (20PG4-3) | SAMN39503484 | 17/02/2025 | ||||||||||
| 469 | SRX23311367 | SRP484717 | Illumina NovaSeq 6000 | SRS20187695 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025359 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_347 (20PG4-3) | SAMN39503483 | 17/02/2025 | ||||||||||
| 470 | SRX23311368 | SRP484717 | Illumina NovaSeq 6000 | SRS20187697 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025360 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_348 (20PG4-3) | SAMN39503482 | 17/02/2025 | ||||||||||
| 471 | SRX23311369 | SRP484717 | Illumina NovaSeq 6000 | SRS20187696 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025361 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_349 (20PG4-3) | SAMN39503481 | 17/02/2025 | ||||||||||
| 472 | SRX23311370 | SRP484717 | Illumina NovaSeq 6000 | SRS20187700 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025362 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_35 (21PG40-2) | SAMN39503480 | 17/02/2025 | ||||||||||
| 473 | SRX23311371 | SRP484717 | Illumina NovaSeq 6000 | SRS20187702 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025363 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_350 (20PG4-3) | SAMN39503479 | 17/02/2025 | ||||||||||
| 474 | SRX23311231 | SRP484717 | Illumina NovaSeq 6000 | SRS20187560 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025364 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_351 (20PG4-3) | SAMN39503478 | 17/02/2025 | ||||||||||
| 475 | SRX23311232 | SRP484717 | Illumina NovaSeq 6000 | SRS20187566 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025365 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_352 (20PG4-3) | SAMN39503477 | 17/02/2025 | ||||||||||
| 476 | SRX23311233 | SRP484717 | Illumina NovaSeq 6000 | SRS20187559 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025366 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_353 (20PG4-3) | SAMN39503476 | 17/02/2025 | ||||||||||
| 477 | SRX23311234 | SRP484717 | Illumina NovaSeq 6000 | SRS20187561 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025367 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_354 (20PG4-3) | SAMN39503475 | 17/02/2025 | ||||||||||
| 478 | SRX23311235 | SRP484717 | Illumina NovaSeq 6000 | SRS20187562 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025368 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_355 (20PG4-3) | SAMN39503474 | 17/02/2025 | ||||||||||
| 479 | SRX23311236 | SRP484717 | Illumina NovaSeq 6000 | SRS20187567 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025369 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_356 (20PG4-3) | SAMN39503473 | 17/02/2025 | ||||||||||
| 480 | SRX23311237 | SRP484717 | Illumina NovaSeq 6000 | SRS20187563 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025370 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_357 (20PG4-3) | SAMN39503472 | 17/02/2025 | ||||||||||
| 481 | SRX23311238 | SRP484717 | Illumina NovaSeq 6000 | SRS20187564 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025371 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_358 (20PG4-3) | SAMN39503471 | 17/02/2025 | ||||||||||
| 482 | SRX23310954 | SRP484717 | Illumina NovaSeq 6000 | SRS20187282 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025372 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_359 (21PG33-2) | SAMN39503470 | 17/02/2025 | ||||||||||
| 483 | SRX23310955 | SRP484717 | Illumina NovaSeq 6000 | SRS20187285 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025373 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_36 (21PG40-2) | SAMN39503469 | 17/02/2025 | ||||||||||
| 484 | SRX23310956 | SRP484717 | Illumina NovaSeq 6000 | SRS20187283 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025374 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_360 (21PG33-2) | SAMN39503468 | 17/02/2025 | ||||||||||
| 485 | SRX23310957 | SRP484717 | Illumina NovaSeq 6000 | SRS20187284 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025375 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_361 (21PG33-2) | SAMN39503467 | 17/02/2025 | ||||||||||
| 486 | SRX23310958 | SRP484717 | Illumina NovaSeq 6000 | SRS20187286 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025376 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_362 (21PG33-2) | SAMN39503466 | 17/02/2025 | ||||||||||
| 487 | SRX23310959 | SRP484717 | Illumina NovaSeq 6000 | SRS20187288 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025377 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_363 (21PG33-2) | SAMN39503465 | 17/02/2025 | ||||||||||
| 488 | SRX23310960 | SRP484717 | Illumina NovaSeq 6000 | SRS20187287 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025378 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_364 (21PG33-2) | SAMN39503464 | 17/02/2025 | ||||||||||
| 489 | SRX23310961 | SRP484717 | Illumina NovaSeq 6000 | SRS20187289 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025379 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_365 (21PG33-2) | SAMN39503463 | 17/02/2025 | ||||||||||
| 490 | SRX23311288 | SRP484717 | Illumina NovaSeq 6000 | SRS20187615 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025380 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_366 (21PG33-2) | SAMN39503462 | 17/02/2025 | ||||||||||
| 491 | SRX23311291 | SRP484717 | Illumina NovaSeq 6000 | SRS20187619 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025383 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_369 (21PG33-2) | SAMN39503459 | 17/02/2025 | ||||||||||
| 492 | SRX23311292 | SRP484717 | Illumina NovaSeq 6000 | SRS20187620 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025384 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_37 (21PG40-2) | SAMN39503458 | 17/02/2025 | ||||||||||
| 493 | SRX23311293 | SRP484717 | Illumina NovaSeq 6000 | SRS20187621 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025385 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_370 (21PG33-2) | SAMN39503457 | 17/02/2025 | ||||||||||
| 494 | SRX23311294 | SRP484717 | Illumina NovaSeq 6000 | SRS20187626 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025386 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_371 (21PG33-2) | SAMN39503456 | 17/02/2025 | ||||||||||
| 495 | SRX23311295 | SRP484717 | Illumina NovaSeq 6000 | SRS20187623 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025387 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_372 (21PG33-2) | SAMN39503455 | 17/02/2025 | ||||||||||
| 496 | SRX23311373 | SRP484717 | Illumina NovaSeq 6000 | SRS20187699 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025389 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_39 (21PG40-2) | SAMN39503453 | 17/02/2025 | ||||||||||
| 497 | SRX23311374 | SRP484717 | Illumina NovaSeq 6000 | SRS20187701 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025390 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_4 (21PG50-3) | SAMN39503452 | 17/02/2025 | ||||||||||
| 498 | SRX23311376 | SRP484717 | Illumina NovaSeq 6000 | SRS20187704 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025392 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_41 (21PG33-1) | SAMN39503450 | 17/02/2025 | ||||||||||
| 499 | SRX23311377 | SRP484717 | Illumina NovaSeq 6000 | SRS20187705 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025393 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_42 (21PG33-1) | SAMN39503449 | 17/02/2025 | ||||||||||
| 500 | SRX23311378 | SRP484717 | Illumina NovaSeq 6000 | SRS20187706 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025394 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_43 (21PG33-1) | SAMN39503448 | 17/02/2025 | ||||||||||
| 501 | SRX23311379 | SRP484717 | Illumina NovaSeq 6000 | SRS20187709 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025395 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_44 (21PG33-1) | SAMN39503447 | 17/02/2025 | ||||||||||
| 502 | SRX23311239 | SRP484717 | Illumina NovaSeq 6000 | SRS20187573 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025396 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_45 (21PG33-1) | SAMN39503446 | 17/02/2025 | ||||||||||
| 503 | SRX23311241 | SRP484717 | Illumina NovaSeq 6000 | SRS20187568 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025398 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_47 (21PG33-1) | SAMN39503444 | 17/02/2025 | ||||||||||
| 504 | SRX23311242 | SRP484717 | Illumina NovaSeq 6000 | SRS20187569 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025399 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_48 (21PG33-1) | SAMN39503443 | 17/02/2025 | ||||||||||
| 505 | SRX23311243 | SRP484717 | Illumina NovaSeq 6000 | SRS20187571 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025400 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_49 (21PG33-1) | SAMN39503442 | 17/02/2025 | ||||||||||
| 506 | SRX23311244 | SRP484717 | Illumina NovaSeq 6000 | SRS20187570 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025401 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_5 (21PG50-3) | SAMN39503441 | 17/02/2025 | ||||||||||
| 507 | SRX23311245 | SRP484717 | Illumina NovaSeq 6000 | SRS20187572 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025402 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_50 (21PG33-1) | SAMN39503440 | 17/02/2025 | ||||||||||
| 508 | SRX23311246 | SRP484717 | Illumina NovaSeq 6000 | SRS20187574 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025403 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_51 (21PG33-1) | SAMN39503439 | 17/02/2025 | ||||||||||
| 509 | SRX23310962 | SRP484717 | Illumina NovaSeq 6000 | SRS20187291 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025404 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_52 (21PG33-1) | SAMN39503438 | 17/02/2025 | ||||||||||
| 510 | SRX23310963 | SRP484717 | Illumina NovaSeq 6000 | SRS20187290 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025405 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_53 (21PG33-1) | SAMN39503437 | 17/02/2025 | ||||||||||
| 511 | SRX23310964 | SRP484717 | Illumina NovaSeq 6000 | SRS20187293 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025406 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_54 (21PG33-1) | SAMN39503436 | 17/02/2025 | ||||||||||
| 512 | SRX23310965 | SRP484717 | Illumina NovaSeq 6000 | SRS20187292 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025407 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_55 (21PG33-1) | SAMN39503435 | 17/02/2025 | ||||||||||
| 513 | SRX23310966 | SRP484717 | Illumina NovaSeq 6000 | SRS20187294 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025408 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_56 (21PG33-1) | SAMN39503434 | 17/02/2025 | ||||||||||
| 514 | SRX23310967 | SRP484717 | Illumina NovaSeq 6000 | SRS20187295 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025409 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_57 (21PG33-1) | SAMN39503433 | 17/02/2025 | ||||||||||
| 515 | SRX23310968 | SRP484717 | Illumina NovaSeq 6000 | SRS20187296 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025410 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_58 (21PG33-1) | SAMN39503432 | 17/02/2025 | ||||||||||
| 516 | SRX23311296 | SRP484717 | Illumina NovaSeq 6000 | SRS20187622 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025412 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_6 (21PG50-3) | SAMN39503430 | 17/02/2025 | ||||||||||
| 517 | SRX23311297 | SRP484717 | Illumina NovaSeq 6000 | SRS20187624 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025413 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_60 (21PG33-1) | SAMN39503429 | 17/02/2025 | ||||||||||
| 518 | SRX23311298 | SRP484717 | Illumina NovaSeq 6000 | SRS20187627 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025414 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_61 (21PG33-1) | SAMN39503428 | 17/02/2025 | ||||||||||
| 519 | SRX23311299 | SRP484717 | Illumina NovaSeq 6000 | SRS20187625 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025415 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_62 (21PG33-1) | SAMN39503427 | 17/02/2025 | ||||||||||
| 520 | SRX23311383 | SRP484717 | Illumina NovaSeq 6000 | SRS20187711 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025423 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_7 (21PG50-3) | SAMN39503419 | 17/02/2025 | ||||||||||
| 521 | SRX23311253 | SRP484717 | Illumina NovaSeq 6000 | SRS20187581 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025434 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_8 (21PG77-1) | SAMN39503408 | 17/02/2025 | ||||||||||
| 522 | SRX23311254 | SRP484717 | Illumina NovaSeq 6000 | SRS20187582 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025435 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_80 (21PG42-2) | SAMN39503407 | 17/02/2025 | ||||||||||
| 523 | SRX23310971 | SRP484717 | Illumina NovaSeq 6000 | SRS20187299 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025437 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_82 (21PG55-1) | SAMN39503405 | 17/02/2025 | ||||||||||
| 524 | SRX23310972 | SRP484717 | Illumina NovaSeq 6000 | SRS20187300 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025438 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_83 (21PG55-1) | SAMN39503404 | 17/02/2025 | ||||||||||
| 525 | SRX23310973 | SRP484717 | Illumina NovaSeq 6000 | SRS20187301 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025439 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_84 (21PG55-1) | SAMN39503403 | 17/02/2025 | ||||||||||
| 526 | SRX23310974 | SRP484717 | Illumina NovaSeq 6000 | SRS20187302 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025440 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_85 (21PG55-1) | SAMN39503402 | 17/02/2025 | ||||||||||
| 527 | SRX23310975 | SRP484717 | Illumina NovaSeq 6000 | SRS20187305 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025441 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_86 (21PG55-1) | SAMN39503401 | 17/02/2025 | ||||||||||
| 528 | SRX23310976 | SRP484717 | Illumina NovaSeq 6000 | SRS20187304 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025442 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_87 (21PG55-1) | SAMN39503400 | 17/02/2025 | ||||||||||
| 529 | SRX23310977 | SRP484717 | Illumina NovaSeq 6000 | SRS20187303 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025443 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_88 (21PG55-1) | SAMN39503399 | 17/02/2025 | ||||||||||
| 530 | SRX23311304 | SRP484717 | Illumina NovaSeq 6000 | SRS20187631 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025444 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_89 (21PG55-1) | SAMN39503398 | 17/02/2025 | ||||||||||
| 531 | SRX23311305 | SRP484717 | Illumina NovaSeq 6000 | SRS20187634 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025445 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_9 (21PG77-1) | SAMN39503397 | 17/02/2025 | ||||||||||
| 532 | SRX23311306 | SRP484717 | Illumina NovaSeq 6000 | SRS20187632 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025446 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_90 (21PG55-1) | SAMN39503396 | 17/02/2025 | ||||||||||
| 533 | SRX23311307 | SRP484717 | Illumina NovaSeq 6000 | SRS20187637 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025447 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_91 (21PG55-1) | SAMN39503395 | 17/02/2025 | ||||||||||
| 534 | SRX23311309 | SRP484717 | Illumina NovaSeq 6000 | SRS20187636 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025449 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_93 (21PG55-1) | SAMN39503393 | 17/02/2025 | ||||||||||
| 535 | SRX23311310 | SRP484717 | Illumina NovaSeq 6000 | SRS20187638 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025450 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_94 (21PG55-1) | SAMN39503392 | 17/02/2025 | ||||||||||
| 536 | SRX23311311 | SRP484717 | Illumina NovaSeq 6000 | SRS20187639 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025451 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_95 (21PG55-1) | SAMN39503391 | 17/02/2025 | ||||||||||
| 537 | SRX23311388 | SRP484717 | Illumina NovaSeq 6000 | SRS20187716 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025452 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_96 (21PG55-1) | SAMN39503390 | 17/02/2025 | ||||||||||
| 538 | SRX23311389 | SRP484717 | Illumina NovaSeq 6000 | SRS20187718 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025453 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_97 (21PG55-3) | SAMN39503389 | 17/02/2025 | ||||||||||
| 539 | SRX23311390 | SRP484717 | Illumina NovaSeq 6000 | SRS20187720 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025454 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_98 (21PG55-3) | SAMN39503388 | 17/02/2025 | ||||||||||
| 540 | SRX23311391 | SRP484717 | Illumina NovaSeq 6000 | SRS20187717 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025455 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_99 (21PG55-3) | SAMN39503387 | 17/02/2025 |
anatomical entity¶
In [ ]:
infoOrgan = library['infoOrgan'].drop_duplicates().sort_values()
organ_df = pd.DataFrame(infoOrgan)
organ_df = organ_df.reindex(columns=[*organ_df.columns.tolist(), 'notes_anat', 'anatId_', 'anatName_', 'anatAnnotationStatus_', 'infoOrgan_new', 'comment_anat'], fill_value="")
organ_df.to_csv(info_anat_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
if not os.path.exists(info_anat_complete_path):
organ_df.to_csv(info_anat_complete_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
# options for anatAnnotationStatus: perfect match, missing child term, other
In [ ]:
organ_df_complete = pd.read_csv(info_anat_complete_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(organ_df_complete)
| infoOrgan | notes_anat | anatId_ | anatName_ | anatAnnotationStatus_ | infoOrgan_new | comment_anat | |
|---|---|---|---|---|---|---|---|
| 0 | 16 cell: E4 | UBERON:0000085 | morula | missing child term | |||
| 1 | 16 cell: E4.5 | UBERON:0000085 | morula | missing child term | |||
| 2 | 16-32 cell: E4.5 | seems morula is appropriate for 16-64 cell stages | UBERON:0000085 | morula | missing child term | ||
| 3 | 16-32 cell: E4.75 | seems morula is appropriate for 16-64 cell stages | UBERON:0000085 | morula | missing child term | ||
| 4 | 8 cell: E3.5 | UBERON:0019252 | 8-cell stage embryo | perfect match | |||
| 5 | Early blastocyst: E4.5 | UBERON:0000358 | blastocyst | missing child term | |||
| 6 | Early blastocyst: E5 | UBERON:0000358 | blastocyst | missing child term | |||
| 7 | Early blastocyst: E5.25 | UBERON:0000358 | blastocyst | missing child term | |||
| 8 | Late blastocyst: E5.5 | UBERON:0000358 | blastocyst | missing child term | |||
| 9 | Late blastocyst: E5.75 | UBERON:0000358 | blastocyst | missing child term | |||
| 10 | Late blastocyst: E6 | UBERON:0000358 | blastocyst | missing child term | |||
| 11 | Middle blastocyst: E5.25 | UBERON:0000358 | blastocyst | missing child term | |||
| 12 | Middle blastocyst: E5.5 | UBERON:0000358 | blastocyst | missing child term | |||
| 13 | Middle blastocyst: E5.75 | UBERON:0000358 | blastocyst | missing child term |
In [ ]:
library = library.merge(organ_df_complete, left_on='infoOrgan', right_on='infoOrgan')
In [ ]:
library['anatId'] = library['anatId_'].values
library['anatName'] = library['anatName_'].values
library['anatAnnotationStatus'] = library['anatAnnotationStatus_'].values
In [ ]:
## optional - update infoOrgan, add anat-specific comments
#library['infoOrgan'] = library['infoOrgan_new'].values
#library['comment'] = library[['comment', 'comment_anat']].agg(' '.join, axis=1)
In [ ]:
# reformat, save progress
library = library[library_cols]
display_df(library)
library.to_csv(library_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRX23310999 | SRP484717 | Illumina NovaSeq 6000 | SRS20187327 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024795 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_1 (21PG50-2) | SAMN39504047 | 17/02/2025 | ||||||||||||||||
| 1 | SRX23311255 | SRP484717 | Illumina NovaSeq 6000 | SRS20187583 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024796 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_10 (21PG39-1) | SAMN39504046 | 17/02/2025 | ||||||||||||||||
| 2 | SRX23311256 | SRP484717 | Illumina NovaSeq 6000 | SRS20187584 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024797 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_100 (21PG55-2) | SAMN39504045 | 17/02/2025 | ||||||||||||||||
| 3 | SRX23311257 | SRP484717 | Illumina NovaSeq 6000 | SRS20187585 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024798 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_101 (21PG55-2) | SAMN39504044 | 17/02/2025 | ||||||||||||||||
| 4 | SRX23311258 | SRP484717 | Illumina NovaSeq 6000 | SRS20187586 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024799 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_102 (21PG55-2) | SAMN39504043 | 17/02/2025 | ||||||||||||||||
| 5 | SRX23311259 | SRP484717 | Illumina NovaSeq 6000 | SRS20187590 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024800 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_103 (21PG55-2) | SAMN39504042 | 17/02/2025 | ||||||||||||||||
| 6 | SRX23310825 | SRP484717 | Illumina NovaSeq 6000 | SRS20187153 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024801 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_104 (21PG55-2) | SAMN39504041 | 17/02/2025 | ||||||||||||||||
| 7 | SRX23310826 | SRP484717 | Illumina NovaSeq 6000 | SRS20187154 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024802 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_105 (21PG55-2) | SAMN39504040 | 17/02/2025 | ||||||||||||||||
| 8 | SRX23310827 | SRP484717 | Illumina NovaSeq 6000 | SRS20187157 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024803 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_106 (21PG55-2) | SAMN39504039 | 17/02/2025 | ||||||||||||||||
| 9 | SRX23311000 | SRP484717 | Illumina NovaSeq 6000 | SRS20187330 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024804 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_107 (21PG55-2) | SAMN39504038 | 17/02/2025 | ||||||||||||||||
| 10 | SRX23311001 | SRP484717 | Illumina NovaSeq 6000 | SRS20187329 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024805 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_108 (21PG55-2) | SAMN39504037 | 17/02/2025 | ||||||||||||||||
| 11 | SRX23311002 | SRP484717 | Illumina NovaSeq 6000 | SRS20187328 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024806 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_109 (21PG34-1) | SAMN39504036 | 17/02/2025 | ||||||||||||||||
| 12 | SRX23311003 | SRP484717 | Illumina NovaSeq 6000 | SRS20187331 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024807 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_11 (21PG39-1) | SAMN39504035 | 17/02/2025 | ||||||||||||||||
| 13 | SRX23311004 | SRP484717 | Illumina NovaSeq 6000 | SRS20187333 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024808 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_110 (21PG34-1) | SAMN39504034 | 17/02/2025 | ||||||||||||||||
| 14 | SRX23311006 | SRP484717 | Illumina NovaSeq 6000 | SRS20187334 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024810 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_112 (21PG34-1) | SAMN39504032 | 17/02/2025 | ||||||||||||||||
| 15 | SRX23311007 | SRP484717 | Illumina NovaSeq 6000 | SRS20187335 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024811 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_113 (21PG37-2) | SAMN39504031 | 17/02/2025 | ||||||||||||||||
| 16 | SRX23311392 | SRP484717 | Illumina NovaSeq 6000 | SRS20187719 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024812 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_114 (21PG37-2) | SAMN39504030 | 17/02/2025 | ||||||||||||||||
| 17 | SRX23311393 | SRP484717 | Illumina NovaSeq 6000 | SRS20187721 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024813 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_115 (21PG37-2) | SAMN39504029 | 17/02/2025 | ||||||||||||||||
| 18 | SRX23311394 | SRP484717 | Illumina NovaSeq 6000 | SRS20187722 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024814 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_116 (21PG37-2) | SAMN39504028 | 17/02/2025 | ||||||||||||||||
| 19 | SRX23311395 | SRP484717 | Illumina NovaSeq 6000 | SRS20187724 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024815 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_117 (21PG37-2) | SAMN39504027 | 17/02/2025 | ||||||||||||||||
| 20 | SRX23311397 | SRP484717 | Illumina NovaSeq 6000 | SRS20187725 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024817 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_119 (21PG37-2) | SAMN39504025 | 17/02/2025 | ||||||||||||||||
| 21 | SRX23311398 | SRP484717 | Illumina NovaSeq 6000 | SRS20187726 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024818 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_12 (21PG39-1) | SAMN39504024 | 17/02/2025 | ||||||||||||||||
| 22 | SRX23311399 | SRP484717 | Illumina NovaSeq 6000 | SRS20187727 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024819 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_120 (21PG37-2) | SAMN39504023 | 17/02/2025 | ||||||||||||||||
| 23 | SRX23310828 | SRP484717 | Illumina NovaSeq 6000 | SRS20187156 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024820 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_121 (21PG37-2) | SAMN39504022 | 17/02/2025 | ||||||||||||||||
| 24 | SRX23310829 | SRP484717 | Illumina NovaSeq 6000 | SRS20187158 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024821 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_122 (21PG37-2) | SAMN39504021 | 17/02/2025 | ||||||||||||||||
| 25 | SRX23310831 | SRP484717 | Illumina NovaSeq 6000 | SRS20187159 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024823 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_124 (21PG37-3) | SAMN39504019 | 17/02/2025 | ||||||||||||||||
| 26 | SRX23310832 | SRP484717 | Illumina NovaSeq 6000 | SRS20187160 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024824 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_125 (21PG37-3) | SAMN39504018 | 17/02/2025 | ||||||||||||||||
| 27 | SRX23310833 | SRP484717 | Illumina NovaSeq 6000 | SRS20187161 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024825 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_126 (21PG37-3) | SAMN39504017 | 17/02/2025 | ||||||||||||||||
| 28 | SRX23310834 | SRP484717 | Illumina NovaSeq 6000 | SRS20187163 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024826 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_127 (21PG37-3) | SAMN39504016 | 17/02/2025 | ||||||||||||||||
| 29 | SRX23310835 | SRP484717 | Illumina NovaSeq 6000 | SRS20187162 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024827 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_128 (21PG37-3) | SAMN39504015 | 17/02/2025 | ||||||||||||||||
| 30 | SRX23311008 | SRP484717 | Illumina NovaSeq 6000 | SRS20187336 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024828 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_129 (21PG37-3) | SAMN39504014 | 17/02/2025 | ||||||||||||||||
| 31 | SRX23311009 | SRP484717 | Illumina NovaSeq 6000 | SRS20187337 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024829 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_13 (21PG39-1) | SAMN39504013 | 17/02/2025 | ||||||||||||||||
| 32 | SRX23311010 | SRP484717 | Illumina NovaSeq 6000 | SRS20187338 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024830 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_130 (21PG37-3) | SAMN39504012 | 17/02/2025 | ||||||||||||||||
| 33 | SRX23311011 | SRP484717 | Illumina NovaSeq 6000 | SRS20187339 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024831 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_131 (21PG37-3) | SAMN39504011 | 17/02/2025 | ||||||||||||||||
| 34 | SRX23311012 | SRP484717 | Illumina NovaSeq 6000 | SRS20187340 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024832 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_132 (21PG37-3) | SAMN39504010 | 17/02/2025 | ||||||||||||||||
| 35 | SRX23311013 | SRP484717 | Illumina NovaSeq 6000 | SRS20187341 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024833 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_133 (21PG37-3) | SAMN39504009 | 17/02/2025 | ||||||||||||||||
| 36 | SRX23311014 | SRP484717 | Illumina NovaSeq 6000 | SRS20187342 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024834 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_134 (21PG37-3) | SAMN39504008 | 17/02/2025 | ||||||||||||||||
| 37 | SRX23311015 | SRP484717 | Illumina NovaSeq 6000 | SRS20187343 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024835 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_135 (21PG37-3) | SAMN39504007 | 17/02/2025 | ||||||||||||||||
| 38 | SRX23311400 | SRP484717 | Illumina NovaSeq 6000 | SRS20187728 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024836 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_136 (21PG37-3) | SAMN39504006 | 17/02/2025 | ||||||||||||||||
| 39 | SRX23311402 | SRP484717 | Illumina NovaSeq 6000 | SRS20187730 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024838 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_138 (21PG37-3) | SAMN39504004 | 17/02/2025 | ||||||||||||||||
| 40 | SRX23311404 | SRP484717 | Illumina NovaSeq 6000 | SRS20187731 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024840 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_14 (21PG39-1) | SAMN39504002 | 17/02/2025 | ||||||||||||||||
| 41 | SRX23311405 | SRP484717 | Illumina NovaSeq 6000 | SRS20187733 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024841 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_140 (21PG37-3) | SAMN39504001 | 17/02/2025 | ||||||||||||||||
| 42 | SRX23311406 | SRP484717 | Illumina NovaSeq 6000 | SRS20187732 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024842 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_141 (21PG37-3) | SAMN39504000 | 17/02/2025 | ||||||||||||||||
| 43 | SRX23310985 | SRP484717 | Illumina NovaSeq 6000 | SRS20187311 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024851 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_15 (21PG39-1) | SAMN39503991 | 17/02/2025 | ||||||||||||||||
| 44 | SRX23310837 | SRP484717 | Illumina NovaSeq 6000 | SRS20187165 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024853 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_151 (21PG55-2) | SAMN39503989 | 17/02/2025 | ||||||||||||||||
| 45 | SRX23310840 | SRP484717 | Illumina NovaSeq 6000 | SRS20187168 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024856 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_154 (21PG53-1) | SAMN39503986 | 17/02/2025 | ||||||||||||||||
| 46 | SRX23310842 | SRP484717 | Illumina NovaSeq 6000 | SRS20187170 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024858 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_156 (21PG55-2) | SAMN39503984 | 17/02/2025 | ||||||||||||||||
| 47 | SRX23310843 | SRP484717 | Illumina NovaSeq 6000 | SRS20187171 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024859 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_157 (21PG53-1) | SAMN39503983 | 17/02/2025 | ||||||||||||||||
| 48 | SRX23311016 | SRP484717 | Illumina NovaSeq 6000 | SRS20187344 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024860 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_158 (21PG53-1) | SAMN39503982 | 17/02/2025 | ||||||||||||||||
| 49 | SRX23311017 | SRP484717 | Illumina NovaSeq 6000 | SRS20187345 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024861 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_159 (21PG53-1) | SAMN39503981 | 17/02/2025 | ||||||||||||||||
| 50 | SRX23311018 | SRP484717 | Illumina NovaSeq 6000 | SRS20187346 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024862 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_16 (21PG39-1) | SAMN39503980 | 17/02/2025 | ||||||||||||||||
| 51 | SRX23311019 | SRP484717 | Illumina NovaSeq 6000 | SRS20187347 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024863 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_160 (21PG53-1) | SAMN39503979 | 17/02/2025 | ||||||||||||||||
| 52 | SRX23311020 | SRP484717 | Illumina NovaSeq 6000 | SRS20187348 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024864 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_161 (21PG53-1) | SAMN39503978 | 17/02/2025 | ||||||||||||||||
| 53 | SRX23311021 | SRP484717 | Illumina NovaSeq 6000 | SRS20187350 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024865 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_162 (21PG53-1) | SAMN39503977 | 17/02/2025 | ||||||||||||||||
| 54 | SRX23311022 | SRP484717 | Illumina NovaSeq 6000 | SRS20187352 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024866 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_163 (21PG53-1) | SAMN39503976 | 17/02/2025 | ||||||||||||||||
| 55 | SRX23311023 | SRP484717 | Illumina NovaSeq 6000 | SRS20187351 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024867 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_164 (21PG53-1) | SAMN39503975 | 17/02/2025 | ||||||||||||||||
| 56 | SRX23311408 | SRP484717 | Illumina NovaSeq 6000 | SRS20187736 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024868 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_165 (21PG53-1) | SAMN39503974 | 17/02/2025 | ||||||||||||||||
| 57 | SRX23311409 | SRP484717 | Illumina NovaSeq 6000 | SRS20187738 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024869 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_166 (21PG53-1) | SAMN39503973 | 17/02/2025 | ||||||||||||||||
| 58 | SRX23311410 | SRP484717 | Illumina NovaSeq 6000 | SRS20187737 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024870 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_167 (21PG53-1) | SAMN39503972 | 17/02/2025 | ||||||||||||||||
| 59 | SRX23311411 | SRP484717 | Illumina NovaSeq 6000 | SRS20187741 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024871 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_168 (21PG53-1) | SAMN39503971 | 17/02/2025 | ||||||||||||||||
| 60 | SRX23311412 | SRP484717 | Illumina NovaSeq 6000 | SRS20187742 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024872 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_169 (21PG53-1) | SAMN39503970 | 17/02/2025 | ||||||||||||||||
| 61 | SRX23311413 | SRP484717 | Illumina NovaSeq 6000 | SRS20187740 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024873 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_17 (21PG39-2) | SAMN39503969 | 17/02/2025 | ||||||||||||||||
| 62 | SRX23311414 | SRP484717 | Illumina NovaSeq 6000 | SRS20187739 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024874 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_170 (21PG53-1) | SAMN39503968 | 17/02/2025 | ||||||||||||||||
| 63 | SRX23310987 | SRP484717 | Illumina NovaSeq 6000 | SRS20187315 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024877 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_173 (21PG77-2) | SAMN39503965 | 17/02/2025 | ||||||||||||||||
| 64 | SRX23310988 | SRP484717 | Illumina NovaSeq 6000 | SRS20187316 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024878 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_174 (21PG77-2) | SAMN39503964 | 17/02/2025 | ||||||||||||||||
| 65 | SRX23310990 | SRP484717 | Illumina NovaSeq 6000 | SRS20187318 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024880 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_176 (21PG77-2) | SAMN39503962 | 17/02/2025 | ||||||||||||||||
| 66 | SRX23310991 | SRP484717 | Illumina NovaSeq 6000 | SRS20187319 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024881 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_177 (21PG77-2) | SAMN39503961 | 17/02/2025 | ||||||||||||||||
| 67 | SRX23310992 | SRP484717 | Illumina NovaSeq 6000 | SRS20187321 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024882 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_178 (21PG77-2) | SAMN39503960 | 17/02/2025 | ||||||||||||||||
| 68 | SRX23310993 | SRP484717 | Illumina NovaSeq 6000 | SRS20187320 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024883 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_179 (21PG77-2) | SAMN39503959 | 17/02/2025 | ||||||||||||||||
| 69 | SRX23310844 | SRP484717 | Illumina NovaSeq 6000 | SRS20187173 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024884 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_18 (21PG40-1) | SAMN39503958 | 17/02/2025 | ||||||||||||||||
| 70 | SRX23310845 | SRP484717 | Illumina NovaSeq 6000 | SRS20187172 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024885 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_180 (21PG77-2) | SAMN39503957 | 17/02/2025 | ||||||||||||||||
| 71 | SRX23310846 | SRP484717 | Illumina NovaSeq 6000 | SRS20187175 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024886 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_181 (21PG77-2) | SAMN39503956 | 17/02/2025 | ||||||||||||||||
| 72 | SRX23310847 | SRP484717 | Illumina NovaSeq 6000 | SRS20187174 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024887 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_182 (21PG77-2) | SAMN39503955 | 17/02/2025 | ||||||||||||||||
| 73 | SRX23310848 | SRP484717 | Illumina NovaSeq 6000 | SRS20187176 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024888 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_183 (21PG77-2) | SAMN39503954 | 17/02/2025 | ||||||||||||||||
| 74 | SRX23310849 | SRP484717 | Illumina NovaSeq 6000 | SRS20187178 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024889 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_184 (21PG77-2) | SAMN39503953 | 17/02/2025 | ||||||||||||||||
| 75 | SRX23310850 | SRP484717 | Illumina NovaSeq 6000 | SRS20187177 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024890 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_185 (21PG77-2) | SAMN39503952 | 17/02/2025 | ||||||||||||||||
| 76 | SRX23310851 | SRP484717 | Illumina NovaSeq 6000 | SRS20187179 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024891 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_186 (21PG50-1) | SAMN39503951 | 17/02/2025 | ||||||||||||||||
| 77 | SRX23311024 | SRP484717 | Illumina NovaSeq 6000 | SRS20187349 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024892 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_187 (21PG50-1) | SAMN39503950 | 17/02/2025 | ||||||||||||||||
| 78 | SRX23311025 | SRP484717 | Illumina NovaSeq 6000 | SRS20187354 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024893 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_188 (21PG50-1) | SAMN39503949 | 17/02/2025 | ||||||||||||||||
| 79 | SRX23311027 | SRP484717 | Illumina NovaSeq 6000 | SRS20187353 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024895 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_19 (21PG40-1) | SAMN39503947 | 17/02/2025 | ||||||||||||||||
| 80 | SRX23311029 | SRP484717 | Illumina NovaSeq 6000 | SRS20187356 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024897 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_191 (21PG50-1) | SAMN39503945 | 17/02/2025 | ||||||||||||||||
| 81 | SRX23311030 | SRP484717 | Illumina NovaSeq 6000 | SRS20187359 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024898 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_192 (21PG50-1) | SAMN39503944 | 17/02/2025 | ||||||||||||||||
| 82 | SRX23311031 | SRP484717 | Illumina NovaSeq 6000 | SRS20187360 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024899 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_193 (21PG57-1) | SAMN39503943 | 17/02/2025 | ||||||||||||||||
| 83 | SRX23311417 | SRP484717 | Illumina NovaSeq 6000 | SRS20187747 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024901 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_195 (21PG57-1) | SAMN39503941 | 17/02/2025 | ||||||||||||||||
| 84 | SRX23311418 | SRP484717 | Illumina NovaSeq 6000 | SRS20187745 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024902 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_196 (21PG57-1) | SAMN39503940 | 17/02/2025 | ||||||||||||||||
| 85 | SRX23311419 | SRP484717 | Illumina NovaSeq 6000 | SRS20187746 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024903 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_198 (21PG57-1) | SAMN39503939 | 17/02/2025 | ||||||||||||||||
| 86 | SRX23311420 | SRP484717 | Illumina NovaSeq 6000 | SRS20187749 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024904 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_2 (21PG50-2) | SAMN39503938 | 17/02/2025 | ||||||||||||||||
| 87 | SRX23311421 | SRP484717 | Illumina NovaSeq 6000 | SRS20187748 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024905 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_20 (21PG40-1) | SAMN39503937 | 17/02/2025 | ||||||||||||||||
| 88 | SRX23311422 | SRP484717 | Illumina NovaSeq 6000 | SRS20187750 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024906 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_200 (21PG57-1) | SAMN39503936 | 17/02/2025 | ||||||||||||||||
| 89 | SRX23311423 | SRP484717 | Illumina NovaSeq 6000 | SRS20187753 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024907 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_201 (21PG57-1) | SAMN39503935 | 17/02/2025 | ||||||||||||||||
| 90 | SRX23310994 | SRP484717 | Illumina NovaSeq 6000 | SRS20187322 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024908 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_202 (21PG57-1) | SAMN39503934 | 17/02/2025 | ||||||||||||||||
| 91 | SRX23310995 | SRP484717 | Illumina NovaSeq 6000 | SRS20187323 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024909 | Late blastocyst: E5.5 | ICM: PE | Late blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_206 (21PG57-1) | SAMN39503933 | 17/02/2025 | ||||||||||||||||
| 92 | SRX23310996 | SRP484717 | Illumina NovaSeq 6000 | SRS20187324 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024910 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_209 (21PG57-1) | SAMN39503932 | 17/02/2025 | ||||||||||||||||
| 93 | SRX23310997 | SRP484717 | Illumina NovaSeq 6000 | SRS20187325 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024911 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_21 (21PG40-1) | SAMN39503931 | 17/02/2025 | ||||||||||||||||
| 94 | SRX23310998 | SRP484717 | Illumina NovaSeq 6000 | SRS20187326 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024912 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_210 (21PG57-1) | SAMN39503930 | 17/02/2025 | ||||||||||||||||
| 95 | SRX23311086 | SRP484717 | Illumina NovaSeq 6000 | SRS20187411 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024913 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_22 (21PG40-1) | SAMN39503929 | 17/02/2025 | ||||||||||||||||
| 96 | SRX23311087 | SRP484717 | Illumina NovaSeq 6000 | SRS20187415 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024914 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_23 (21PG40-1) | SAMN39503928 | 17/02/2025 | ||||||||||||||||
| 97 | SRX23311088 | SRP484717 | Illumina NovaSeq 6000 | SRS20187416 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024915 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_230 (21PG49-3) | SAMN39503927 | 17/02/2025 | ||||||||||||||||
| 98 | SRX23310852 | SRP484717 | Illumina NovaSeq 6000 | SRS20187180 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024916 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_231 (21PG49-3) | SAMN39503926 | 17/02/2025 | ||||||||||||||||
| 99 | SRX23310853 | SRP484717 | Illumina NovaSeq 6000 | SRS20187181 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024917 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_232 (21PG49-3) | SAMN39503925 | 17/02/2025 | ||||||||||||||||
| 100 | SRX23310854 | SRP484717 | Illumina NovaSeq 6000 | SRS20187182 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024918 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_233 (21PG49-3) | SAMN39503924 | 17/02/2025 | ||||||||||||||||
| 101 | SRX23310855 | SRP484717 | Illumina NovaSeq 6000 | SRS20187183 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024919 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_234 (21PG49-3) | SAMN39503923 | 17/02/2025 | ||||||||||||||||
| 102 | SRX23310856 | SRP484717 | Illumina NovaSeq 6000 | SRS20187184 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024920 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_235 (21PG49-3) | SAMN39503922 | 17/02/2025 | ||||||||||||||||
| 103 | SRX23310857 | SRP484717 | Illumina NovaSeq 6000 | SRS20187186 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024921 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_236 (21PG49-3) | SAMN39503921 | 17/02/2025 | ||||||||||||||||
| 104 | SRX23310858 | SRP484717 | Illumina NovaSeq 6000 | SRS20187187 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024922 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_237 (21PG49-3) | SAMN39503920 | 17/02/2025 | ||||||||||||||||
| 105 | SRX23310859 | SRP484717 | Illumina NovaSeq 6000 | SRS20187185 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024923 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_238 (21PG49-3) | SAMN39503919 | 17/02/2025 | ||||||||||||||||
| 106 | SRX23311032 | SRP484717 | Illumina NovaSeq 6000 | SRS20187358 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024924 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_239 (21PG49-3) | SAMN39503918 | 17/02/2025 | ||||||||||||||||
| 107 | SRX23311033 | SRP484717 | Illumina NovaSeq 6000 | SRS20187362 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024925 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_24 (21PG40-1) | SAMN39503917 | 17/02/2025 | ||||||||||||||||
| 108 | SRX23311034 | SRP484717 | Illumina NovaSeq 6000 | SRS20187361 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024926 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_240 (21PG49-3) | SAMN39503916 | 17/02/2025 | ||||||||||||||||
| 109 | SRX23311035 | SRP484717 | Illumina NovaSeq 6000 | SRS20187364 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024927 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_241 (21PG49-3) | SAMN39503915 | 17/02/2025 | ||||||||||||||||
| 110 | SRX23311036 | SRP484717 | Illumina NovaSeq 6000 | SRS20187365 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024928 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_242 (21PG49-3) | SAMN39503914 | 17/02/2025 | ||||||||||||||||
| 111 | SRX23311037 | SRP484717 | Illumina NovaSeq 6000 | SRS20187363 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024929 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_243 (21PG49-3) | SAMN39503913 | 17/02/2025 | ||||||||||||||||
| 112 | SRX23311038 | SRP484717 | Illumina NovaSeq 6000 | SRS20187366 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024930 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_244 (21PG49-3) | SAMN39503912 | 17/02/2025 | ||||||||||||||||
| 113 | SRX23311039 | SRP484717 | Illumina NovaSeq 6000 | SRS20187367 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024931 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_245 (21PG49-3) | SAMN39503911 | 17/02/2025 | ||||||||||||||||
| 114 | SRX23311424 | SRP484717 | Illumina NovaSeq 6000 | SRS20187752 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024932 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_246 (21PG49-3) | SAMN39503910 | 17/02/2025 | ||||||||||||||||
| 115 | SRX23311425 | SRP484717 | Illumina NovaSeq 6000 | SRS20187751 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024933 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_247 (21PG49-3) | SAMN39503909 | 17/02/2025 | ||||||||||||||||
| 116 | SRX23311426 | SRP484717 | Illumina NovaSeq 6000 | SRS20187754 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024934 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_248 (21PG49-3) | SAMN39503908 | 17/02/2025 | ||||||||||||||||
| 117 | SRX23311427 | SRP484717 | Illumina NovaSeq 6000 | SRS20187755 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024935 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_249 (21PG49-3) | SAMN39503907 | 17/02/2025 | ||||||||||||||||
| 118 | SRX23311428 | SRP484717 | Illumina NovaSeq 6000 | SRS20187756 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024936 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_25 (21PG40-1) | SAMN39503906 | 17/02/2025 | ||||||||||||||||
| 119 | SRX23311429 | SRP484717 | Illumina NovaSeq 6000 | SRS20187757 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024937 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_250 (21PG49-3) | SAMN39503905 | 17/02/2025 | ||||||||||||||||
| 120 | SRX23311430 | SRP484717 | Illumina NovaSeq 6000 | SRS20187758 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024938 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_251 (21PG49-3) | SAMN39503904 | 17/02/2025 | ||||||||||||||||
| 121 | SRX23311431 | SRP484717 | Illumina NovaSeq 6000 | SRS20187759 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024939 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_252 (21PG49-3) | SAMN39503903 | 17/02/2025 | ||||||||||||||||
| 122 | SRX23311089 | SRP484717 | Illumina NovaSeq 6000 | SRS20187417 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024940 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_253 (21PG49-3) | SAMN39503902 | 17/02/2025 | ||||||||||||||||
| 123 | SRX23311090 | SRP484717 | Illumina NovaSeq 6000 | SRS20187418 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024941 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_254 (21PG76-2) | SAMN39503901 | 17/02/2025 | ||||||||||||||||
| 124 | SRX23311091 | SRP484717 | Illumina NovaSeq 6000 | SRS20187420 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024942 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_255 (21PG76-2) | SAMN39503900 | 17/02/2025 | ||||||||||||||||
| 125 | SRX23311093 | SRP484717 | Illumina NovaSeq 6000 | SRS20187421 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024944 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_257 (20PG4-2) | SAMN39503898 | 17/02/2025 | ||||||||||||||||
| 126 | SRX23311094 | SRP484717 | Illumina NovaSeq 6000 | SRS20187422 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024945 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_258 (20PG4-2) | SAMN39503897 | 17/02/2025 | ||||||||||||||||
| 127 | SRX23311095 | SRP484717 | Illumina NovaSeq 6000 | SRS20187424 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024946 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_259 (20PG4-2) | SAMN39503896 | 17/02/2025 | ||||||||||||||||
| 128 | SRX23311096 | SRP484717 | Illumina NovaSeq 6000 | SRS20187423 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024947 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_26 (21PG40-1) | SAMN39503895 | 17/02/2025 | ||||||||||||||||
| 129 | SRX23310860 | SRP484717 | Illumina NovaSeq 6000 | SRS20187188 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024948 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_260 (20PG4-2) | SAMN39503894 | 17/02/2025 | ||||||||||||||||
| 130 | SRX23310861 | SRP484717 | Illumina NovaSeq 6000 | SRS20187190 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024949 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_261 (20PG4-2) | SAMN39503893 | 17/02/2025 | ||||||||||||||||
| 131 | SRX23310862 | SRP484717 | Illumina NovaSeq 6000 | SRS20187189 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024950 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_262 (20PG4-2) | SAMN39503892 | 17/02/2025 | ||||||||||||||||
| 132 | SRX23310863 | SRP484717 | Illumina NovaSeq 6000 | SRS20187191 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024951 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_263 (20PG4-2) | SAMN39503891 | 17/02/2025 | ||||||||||||||||
| 133 | SRX23310864 | SRP484717 | Illumina NovaSeq 6000 | SRS20187192 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024952 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_264 (20PG4-2) | SAMN39503890 | 17/02/2025 | ||||||||||||||||
| 134 | SRX23310865 | SRP484717 | Illumina NovaSeq 6000 | SRS20187194 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024953 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_265 (20PG4-2) | SAMN39503889 | 17/02/2025 | ||||||||||||||||
| 135 | SRX23310866 | SRP484717 | Illumina NovaSeq 6000 | SRS20187193 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024954 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_266 (20PG4-2) | SAMN39503888 | 17/02/2025 | ||||||||||||||||
| 136 | SRX23310867 | SRP484717 | Illumina NovaSeq 6000 | SRS20187195 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024955 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_267 (20PG4-2) | SAMN39503887 | 17/02/2025 | ||||||||||||||||
| 137 | SRX23311040 | SRP484717 | Illumina NovaSeq 6000 | SRS20187368 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024956 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_268 (20PG4-2) | SAMN39503886 | 17/02/2025 | ||||||||||||||||
| 138 | SRX23311041 | SRP484717 | Illumina NovaSeq 6000 | SRS20187371 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024957 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_269 (20PG4-2) | SAMN39503885 | 17/02/2025 | ||||||||||||||||
| 139 | SRX23311042 | SRP484717 | Illumina NovaSeq 6000 | SRS20187369 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024958 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_27 (21PG40-1) | SAMN39503884 | 17/02/2025 | ||||||||||||||||
| 140 | SRX23311043 | SRP484717 | Illumina NovaSeq 6000 | SRS20187370 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024959 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_270 (20PG4-2) | SAMN39503883 | 17/02/2025 | ||||||||||||||||
| 141 | SRX23311044 | SRP484717 | Illumina NovaSeq 6000 | SRS20187372 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024960 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_271 (20PG4-2) | SAMN39503882 | 17/02/2025 | ||||||||||||||||
| 142 | SRX23311045 | SRP484717 | Illumina NovaSeq 6000 | SRS20187374 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024961 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_272 (20PG4-2) | SAMN39503881 | 17/02/2025 | ||||||||||||||||
| 143 | SRX23311046 | SRP484717 | Illumina NovaSeq 6000 | SRS20187373 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024962 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_273 (20PG4-2) | SAMN39503880 | 17/02/2025 | ||||||||||||||||
| 144 | SRX23311047 | SRP484717 | Illumina NovaSeq 6000 | SRS20187376 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024963 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_274 (20PG4-2) | SAMN39503879 | 17/02/2025 | ||||||||||||||||
| 145 | SRX23311432 | SRP484717 | Illumina NovaSeq 6000 | SRS20187760 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024964 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_275 (20PG4-2) | SAMN39503878 | 17/02/2025 | ||||||||||||||||
| 146 | SRX23311433 | SRP484717 | Illumina NovaSeq 6000 | SRS20187761 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024965 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_276 (20PG4-2) | SAMN39503877 | 17/02/2025 | ||||||||||||||||
| 147 | SRX23311434 | SRP484717 | Illumina NovaSeq 6000 | SRS20187762 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024966 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_277 (20PG4-2) | SAMN39503876 | 17/02/2025 | ||||||||||||||||
| 148 | SRX23311435 | SRP484717 | Illumina NovaSeq 6000 | SRS20187764 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024967 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_278 (20PG4-2) | SAMN39503875 | 17/02/2025 | ||||||||||||||||
| 149 | SRX23311436 | SRP484717 | Illumina NovaSeq 6000 | SRS20187763 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024968 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_279 (20PG4-2) | SAMN39503874 | 17/02/2025 | ||||||||||||||||
| 150 | SRX23311437 | SRP484717 | Illumina NovaSeq 6000 | SRS20187765 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024969 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_28 (21PG40-1) | SAMN39503873 | 17/02/2025 | ||||||||||||||||
| 151 | SRX23311438 | SRP484717 | Illumina NovaSeq 6000 | SRS20187769 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024970 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_280 (20PG4-2) | SAMN39503872 | 17/02/2025 | ||||||||||||||||
| 152 | SRX23311439 | SRP484717 | Illumina NovaSeq 6000 | SRS20187767 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024971 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_281 (20PG4-2) | SAMN39503871 | 17/02/2025 | ||||||||||||||||
| 153 | SRX23311097 | SRP484717 | Illumina NovaSeq 6000 | SRS20187425 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024972 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_282 (20PG4-2) | SAMN39503870 | 17/02/2025 | ||||||||||||||||
| 154 | SRX23311098 | SRP484717 | Illumina NovaSeq 6000 | SRS20187426 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024973 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_283 (20PG4-2) | SAMN39503869 | 17/02/2025 | ||||||||||||||||
| 155 | SRX23311099 | SRP484717 | Illumina NovaSeq 6000 | SRS20187427 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024974 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_284 (20PG4-2) | SAMN39503868 | 17/02/2025 | ||||||||||||||||
| 156 | SRX23311100 | SRP484717 | Illumina NovaSeq 6000 | SRS20187429 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024975 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_285 (20PG4-2) | SAMN39503867 | 17/02/2025 | ||||||||||||||||
| 157 | SRX23311101 | SRP484717 | Illumina NovaSeq 6000 | SRS20187430 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024976 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_286 (20PG4-2) | SAMN39503866 | 17/02/2025 | ||||||||||||||||
| 158 | SRX23311102 | SRP484717 | Illumina NovaSeq 6000 | SRS20187428 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024977 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_287 (20PG4-2) | SAMN39503865 | 17/02/2025 | ||||||||||||||||
| 159 | SRX23311103 | SRP484717 | Illumina NovaSeq 6000 | SRS20187431 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024978 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_288 (21PG57-1) | SAMN39503864 | 17/02/2025 | ||||||||||||||||
| 160 | SRX23310868 | SRP484717 | Illumina NovaSeq 6000 | SRS20187197 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024980 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_29 (21PG40-1) | SAMN39503862 | 17/02/2025 | ||||||||||||||||
| 161 | SRX23310869 | SRP484717 | Illumina NovaSeq 6000 | SRS20187196 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024981 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_290 (20PG4-1) | SAMN39503861 | 17/02/2025 | ||||||||||||||||
| 162 | SRX23310870 | SRP484717 | Illumina NovaSeq 6000 | SRS20187198 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024982 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_291 (20PG4-1) | SAMN39503860 | 17/02/2025 | ||||||||||||||||
| 163 | SRX23310871 | SRP484717 | Illumina NovaSeq 6000 | SRS20187199 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024983 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_292 (20PG4-1) | SAMN39503859 | 17/02/2025 | ||||||||||||||||
| 164 | SRX23310872 | SRP484717 | Illumina NovaSeq 6000 | SRS20187202 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024984 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_293 (20PG4-1) | SAMN39503858 | 17/02/2025 | ||||||||||||||||
| 165 | SRX23310873 | SRP484717 | Illumina NovaSeq 6000 | SRS20187200 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024985 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_294 (20PG4-1) | SAMN39503857 | 17/02/2025 | ||||||||||||||||
| 166 | SRX23310874 | SRP484717 | Illumina NovaSeq 6000 | SRS20187201 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024986 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_295 (20PG4-1) | SAMN39503856 | 17/02/2025 | ||||||||||||||||
| 167 | SRX23310875 | SRP484717 | Illumina NovaSeq 6000 | SRS20187203 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024987 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_296 (20PG4-1) | SAMN39503855 | 17/02/2025 | ||||||||||||||||
| 168 | SRX23311048 | SRP484717 | Illumina NovaSeq 6000 | SRS20187375 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024988 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_297 (20PG4-1) | SAMN39503854 | 17/02/2025 | ||||||||||||||||
| 169 | SRX23311049 | SRP484717 | Illumina NovaSeq 6000 | SRS20187377 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024989 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_298 (20PG4-1) | SAMN39503853 | 17/02/2025 | ||||||||||||||||
| 170 | SRX23311050 | SRP484717 | Illumina NovaSeq 6000 | SRS20187378 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024990 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_299 (20PG4-1) | SAMN39503852 | 17/02/2025 | ||||||||||||||||
| 171 | SRX23311051 | SRP484717 | Illumina NovaSeq 6000 | SRS20187379 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024991 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_3 (21PG50-2) | SAMN39503851 | 17/02/2025 | ||||||||||||||||
| 172 | SRX23311052 | SRP484717 | Illumina NovaSeq 6000 | SRS20187380 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024992 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_30 (21PG40-1) | SAMN39503850 | 17/02/2025 | ||||||||||||||||
| 173 | SRX23311053 | SRP484717 | Illumina NovaSeq 6000 | SRS20187381 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024993 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_300 (20PG4-1) | SAMN39503849 | 17/02/2025 | ||||||||||||||||
| 174 | SRX23311054 | SRP484717 | Illumina NovaSeq 6000 | SRS20187382 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024994 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_301 (20PG4-1) | SAMN39503848 | 17/02/2025 | ||||||||||||||||
| 175 | SRX23311055 | SRP484717 | Illumina NovaSeq 6000 | SRS20187383 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024995 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_302 (20PG4-1) | SAMN39503847 | 17/02/2025 | ||||||||||||||||
| 176 | SRX23311441 | SRP484717 | Illumina NovaSeq 6000 | SRS20187768 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024997 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_304 (20PG4-1) | SAMN39503845 | 17/02/2025 | ||||||||||||||||
| 177 | SRX23311442 | SRP484717 | Illumina NovaSeq 6000 | SRS20187772 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024998 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_305 (20PG4-1) | SAMN39503844 | 17/02/2025 | ||||||||||||||||
| 178 | SRX23311443 | SRP484717 | Illumina NovaSeq 6000 | SRS20187770 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024999 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_306 (20PG4-1) | SAMN39503843 | 17/02/2025 | ||||||||||||||||
| 179 | SRX23311444 | SRP484717 | Illumina NovaSeq 6000 | SRS20187771 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025000 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_307 (20PG4-1) | SAMN39503842 | 17/02/2025 | ||||||||||||||||
| 180 | SRX23311446 | SRP484717 | Illumina NovaSeq 6000 | SRS20187774 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025002 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_309 (20PG4-1) | SAMN39503840 | 17/02/2025 | ||||||||||||||||
| 181 | SRX23311447 | SRP484717 | Illumina NovaSeq 6000 | SRS20187775 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025003 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_31 (21PG40-1) | SAMN39503839 | 17/02/2025 | ||||||||||||||||
| 182 | SRX23311106 | SRP484717 | Illumina NovaSeq 6000 | SRS20187435 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025005 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_311 (20PG4-1) | SAMN39503837 | 17/02/2025 | ||||||||||||||||
| 183 | SRX23311109 | SRP484717 | Illumina NovaSeq 6000 | SRS20187437 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025008 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_314 (21PG75-1) | SAMN39503834 | 17/02/2025 | ||||||||||||||||
| 184 | SRX23311110 | SRP484717 | Illumina NovaSeq 6000 | SRS20187436 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025009 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_315 (21PG75-1) | SAMN39503833 | 17/02/2025 | ||||||||||||||||
| 185 | SRX23311111 | SRP484717 | Illumina NovaSeq 6000 | SRS20187440 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025010 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_316 (21PG75-1) | SAMN39503832 | 17/02/2025 | ||||||||||||||||
| 186 | SRX23310877 | SRP484717 | Illumina NovaSeq 6000 | SRS20187204 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025013 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_319 (21PG75-1) | SAMN39503829 | 17/02/2025 | ||||||||||||||||
| 187 | SRX23310878 | SRP484717 | Illumina NovaSeq 6000 | SRS20187206 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025014 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_32 (21PG40-1) | SAMN39503828 | 17/02/2025 | ||||||||||||||||
| 188 | SRX23310879 | SRP484717 | Illumina NovaSeq 6000 | SRS20187207 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025015 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_320 (21PG75-1) | SAMN39503827 | 17/02/2025 | ||||||||||||||||
| 189 | SRX23310880 | SRP484717 | Illumina NovaSeq 6000 | SRS20187208 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025016 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_321 (21PG75-1) | SAMN39503826 | 17/02/2025 | ||||||||||||||||
| 190 | SRX23310881 | SRP484717 | Illumina NovaSeq 6000 | SRS20187209 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025017 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_322 (21PG75-1) | SAMN39503825 | 17/02/2025 | ||||||||||||||||
| 191 | SRX23310882 | SRP484717 | Illumina NovaSeq 6000 | SRS20187212 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025018 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_323 (21PG75-1) | SAMN39503824 | 17/02/2025 | ||||||||||||||||
| 192 | SRX23310883 | SRP484717 | Illumina NovaSeq 6000 | SRS20187211 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025019 | Late blastocyst: E6 | TE: polar | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_324 (21PG75-1) | SAMN39503823 | 17/02/2025 | ||||||||||||||||
| 193 | SRX23311056 | SRP484717 | Illumina NovaSeq 6000 | SRS20187384 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025020 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_325 (21PG75-1) | SAMN39503822 | 17/02/2025 | ||||||||||||||||
| 194 | SRX23311057 | SRP484717 | Illumina NovaSeq 6000 | SRS20187386 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025021 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_326 (21PG75-1) | SAMN39503821 | 17/02/2025 | ||||||||||||||||
| 195 | SRX23311059 | SRP484717 | Illumina NovaSeq 6000 | SRS20187385 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025023 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_328 (21PG75-1) | SAMN39503819 | 17/02/2025 | ||||||||||||||||
| 196 | SRX23311060 | SRP484717 | Illumina NovaSeq 6000 | SRS20187389 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025024 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_329 (21PG75-1) | SAMN39503818 | 17/02/2025 | ||||||||||||||||
| 197 | SRX23311061 | SRP484717 | Illumina NovaSeq 6000 | SRS20187390 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025025 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_33 (21PG40-1) | SAMN39503817 | 17/02/2025 | ||||||||||||||||
| 198 | SRX23311062 | SRP484717 | Illumina NovaSeq 6000 | SRS20187388 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025026 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_330 (21PG75-1) | SAMN39503816 | 17/02/2025 | ||||||||||||||||
| 199 | SRX23311063 | SRP484717 | Illumina NovaSeq 6000 | SRS20187391 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025027 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_331 (21PG75-1) | SAMN39503815 | 17/02/2025 | ||||||||||||||||
| 200 | SRX23311448 | SRP484717 | Illumina NovaSeq 6000 | SRS20187776 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025028 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_332 (21PG75-1) | SAMN39503814 | 17/02/2025 | ||||||||||||||||
| 201 | SRX23311449 | SRP484717 | Illumina NovaSeq 6000 | SRS20187777 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025029 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_333 (21PG75-1) | SAMN39503813 | 17/02/2025 | ||||||||||||||||
| 202 | SRX23311450 | SRP484717 | Illumina NovaSeq 6000 | SRS20187778 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025030 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_334 (21PG75-1) | SAMN39503812 | 17/02/2025 | ||||||||||||||||
| 203 | SRX23311451 | SRP484717 | Illumina NovaSeq 6000 | SRS20187780 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025031 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_335 (21PG52-2) | SAMN39503811 | 17/02/2025 | ||||||||||||||||
| 204 | SRX23311452 | SRP484717 | Illumina NovaSeq 6000 | SRS20187779 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025032 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_336 (21PG52-2) | SAMN39503810 | 17/02/2025 | ||||||||||||||||
| 205 | SRX23311453 | SRP484717 | Illumina NovaSeq 6000 | SRS20187781 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025033 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_337 (21PG52-2) | SAMN39503809 | 17/02/2025 | ||||||||||||||||
| 206 | SRX23311454 | SRP484717 | Illumina NovaSeq 6000 | SRS20187782 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025034 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_338 (21PG52-2) | SAMN39503808 | 17/02/2025 | ||||||||||||||||
| 207 | SRX23311113 | SRP484717 | Illumina NovaSeq 6000 | SRS20187442 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025036 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_34 (21PG40-1) | SAMN39503806 | 17/02/2025 | ||||||||||||||||
| 208 | SRX23311114 | SRP484717 | Illumina NovaSeq 6000 | SRS20187441 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025037 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_340 (21PG52-2) | SAMN39503805 | 17/02/2025 | ||||||||||||||||
| 209 | SRX23311115 | SRP484717 | Illumina NovaSeq 6000 | SRS20187443 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025038 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_341 (21PG52-2) | SAMN39503804 | 17/02/2025 | ||||||||||||||||
| 210 | SRX23311116 | SRP484717 | Illumina NovaSeq 6000 | SRS20187444 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025039 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_342 (21PG52-2) | SAMN39503803 | 17/02/2025 | ||||||||||||||||
| 211 | SRX23311117 | SRP484717 | Illumina NovaSeq 6000 | SRS20187446 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025040 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_343 (21PG52-2) | SAMN39503802 | 17/02/2025 | ||||||||||||||||
| 212 | SRX23311118 | SRP484717 | Illumina NovaSeq 6000 | SRS20187445 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025041 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_344 (21PG52-2) | SAMN39503801 | 17/02/2025 | ||||||||||||||||
| 213 | SRX23311119 | SRP484717 | Illumina NovaSeq 6000 | SRS20187447 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025042 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_345 (21PG52-2) | SAMN39503800 | 17/02/2025 | ||||||||||||||||
| 214 | SRX23311120 | SRP484717 | Illumina NovaSeq 6000 | SRS20187448 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025043 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_346 (21PG52-2) | SAMN39503799 | 17/02/2025 | ||||||||||||||||
| 215 | SRX23310884 | SRP484717 | Illumina NovaSeq 6000 | SRS20187210 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025044 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_347 (21PG52-2) | SAMN39503798 | 17/02/2025 | ||||||||||||||||
| 216 | SRX23310885 | SRP484717 | Illumina NovaSeq 6000 | SRS20187213 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025045 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_348 (21PG52-2) | SAMN39503797 | 17/02/2025 | ||||||||||||||||
| 217 | SRX23310886 | SRP484717 | Illumina NovaSeq 6000 | SRS20187215 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025046 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_349 (21PG52-2) | SAMN39503796 | 17/02/2025 | ||||||||||||||||
| 218 | SRX23310887 | SRP484717 | Illumina NovaSeq 6000 | SRS20187214 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025047 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_35 (21PG40-1) | SAMN39503795 | 17/02/2025 | ||||||||||||||||
| 219 | SRX23310889 | SRP484717 | Illumina NovaSeq 6000 | SRS20187217 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025049 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_351 (21PG52-2) | SAMN39503793 | 17/02/2025 | ||||||||||||||||
| 220 | SRX23310890 | SRP484717 | Illumina NovaSeq 6000 | SRS20187218 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025050 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_352 (21PG52-2) | SAMN39503792 | 17/02/2025 | ||||||||||||||||
| 221 | SRX23310891 | SRP484717 | Illumina NovaSeq 6000 | SRS20187219 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025051 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_353 (21PG41-1) | SAMN39503791 | 17/02/2025 | ||||||||||||||||
| 222 | SRX23311064 | SRP484717 | Illumina NovaSeq 6000 | SRS20187392 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025052 | 16-32 cell: E4.75 | Prelineage: Morula | 16-32 cell: E4.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_354 (21PG41-1) | SAMN39503790 | 17/02/2025 | ||||||||||||||||
| 223 | SRX23311065 | SRP484717 | Illumina NovaSeq 6000 | SRS20187393 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025053 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_355 (21PG41-1) | SAMN39503789 | 17/02/2025 | ||||||||||||||||
| 224 | SRX23311066 | SRP484717 | Illumina NovaSeq 6000 | SRS20187395 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025054 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_356 (21PG41-1) | SAMN39503788 | 17/02/2025 | ||||||||||||||||
| 225 | SRX23311067 | SRP484717 | Illumina NovaSeq 6000 | SRS20187396 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025055 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_357 (21PG41-1) | SAMN39503787 | 17/02/2025 | ||||||||||||||||
| 226 | SRX23311068 | SRP484717 | Illumina NovaSeq 6000 | SRS20187394 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025056 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_358 (21PG41-1) | SAMN39503786 | 17/02/2025 | ||||||||||||||||
| 227 | SRX23311069 | SRP484717 | Illumina NovaSeq 6000 | SRS20187397 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025057 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_359 (21PG41-1) | SAMN39503785 | 17/02/2025 | ||||||||||||||||
| 228 | SRX23311070 | SRP484717 | Illumina NovaSeq 6000 | SRS20187398 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025058 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_36 (21PG40-1) | SAMN39503784 | 17/02/2025 | ||||||||||||||||
| 229 | SRX23311071 | SRP484717 | Illumina NovaSeq 6000 | SRS20187399 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025059 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_360 (21PG41-1) | SAMN39503783 | 17/02/2025 | ||||||||||||||||
| 230 | SRX23311458 | SRP484717 | Illumina NovaSeq 6000 | SRS20187786 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025062 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_37 (21PG40-1) | SAMN39503780 | 17/02/2025 | ||||||||||||||||
| 231 | SRX23311459 | SRP484717 | Illumina NovaSeq 6000 | SRS20187787 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025063 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_38 (21PG40-1) | SAMN39503779 | 17/02/2025 | ||||||||||||||||
| 232 | SRX23311460 | SRP484717 | Illumina NovaSeq 6000 | SRS20187788 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025064 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_39 (21PG40-1) | SAMN39503778 | 17/02/2025 | ||||||||||||||||
| 233 | SRX23311461 | SRP484717 | Illumina NovaSeq 6000 | SRS20187789 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025065 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_4 (21PG50-2) | SAMN39503777 | 17/02/2025 | ||||||||||||||||
| 234 | SRX23311462 | SRP484717 | Illumina NovaSeq 6000 | SRS20187791 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025066 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_40 (21PG40-1) | SAMN39503776 | 17/02/2025 | ||||||||||||||||
| 235 | SRX23311463 | SRP484717 | Illumina NovaSeq 6000 | SRS20187790 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025067 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_41 (21PG40-1) | SAMN39503775 | 17/02/2025 | ||||||||||||||||
| 236 | SRX23311121 | SRP484717 | Illumina NovaSeq 6000 | SRS20187449 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025068 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_42 (21PG40-1) | SAMN39503774 | 17/02/2025 | ||||||||||||||||
| 237 | SRX23311122 | SRP484717 | Illumina NovaSeq 6000 | SRS20187450 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025069 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_43 (21PG51-2) | SAMN39503773 | 17/02/2025 | ||||||||||||||||
| 238 | SRX23311123 | SRP484717 | Illumina NovaSeq 6000 | SRS20187452 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025070 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_44 (21PG51-2) | SAMN39503772 | 17/02/2025 | ||||||||||||||||
| 239 | SRX23311124 | SRP484717 | Illumina NovaSeq 6000 | SRS20187451 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025071 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_45 (21PG51-2) | SAMN39503771 | 17/02/2025 | ||||||||||||||||
| 240 | SRX23311125 | SRP484717 | Illumina NovaSeq 6000 | SRS20187453 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025072 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_46 (21PG51-2) | SAMN39503770 | 17/02/2025 | ||||||||||||||||
| 241 | SRX23311126 | SRP484717 | Illumina NovaSeq 6000 | SRS20187455 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025073 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_47 (21PG51-2) | SAMN39503769 | 17/02/2025 | ||||||||||||||||
| 242 | SRX23311127 | SRP484717 | Illumina NovaSeq 6000 | SRS20187454 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025074 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_48 (21PG51-2) | SAMN39503768 | 17/02/2025 | ||||||||||||||||
| 243 | SRX23311128 | SRP484717 | Illumina NovaSeq 6000 | SRS20187456 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025075 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_49 (21PG51-2) | SAMN39503767 | 17/02/2025 | ||||||||||||||||
| 244 | SRX23310892 | SRP484717 | Illumina NovaSeq 6000 | SRS20187220 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025076 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_5 (21PG50-2) | SAMN39503766 | 17/02/2025 | ||||||||||||||||
| 245 | SRX23310893 | SRP484717 | Illumina NovaSeq 6000 | SRS20187221 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025077 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_50 (21PG51-2) | SAMN39503765 | 17/02/2025 | ||||||||||||||||
| 246 | SRX23310894 | SRP484717 | Illumina NovaSeq 6000 | SRS20187222 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025078 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_51 (21PG51-2) | SAMN39503764 | 17/02/2025 | ||||||||||||||||
| 247 | SRX23310895 | SRP484717 | Illumina NovaSeq 6000 | SRS20187224 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025079 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_52 (21PG51-2) | SAMN39503763 | 17/02/2025 | ||||||||||||||||
| 248 | SRX23310896 | SRP484717 | Illumina NovaSeq 6000 | SRS20187223 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025080 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_53 (21PG51-2) | SAMN39503762 | 17/02/2025 | ||||||||||||||||
| 249 | SRX23310897 | SRP484717 | Illumina NovaSeq 6000 | SRS20187226 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025081 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_54 (21PG51-2) | SAMN39503761 | 17/02/2025 | ||||||||||||||||
| 250 | SRX23310898 | SRP484717 | Illumina NovaSeq 6000 | SRS20187225 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025082 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_55 (21PG51-2) | SAMN39503760 | 17/02/2025 | ||||||||||||||||
| 251 | SRX23310899 | SRP484717 | Illumina NovaSeq 6000 | SRS20187227 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025083 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_56 (21PG51-2) | SAMN39503759 | 17/02/2025 | ||||||||||||||||
| 252 | SRX23311072 | SRP484717 | Illumina NovaSeq 6000 | SRS20187401 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025084 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_57 (21PG51-2) | SAMN39503758 | 17/02/2025 | ||||||||||||||||
| 253 | SRX23311073 | SRP484717 | Illumina NovaSeq 6000 | SRS20187402 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025085 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_58 (21PG51-2) | SAMN39503757 | 17/02/2025 | ||||||||||||||||
| 254 | SRX23311074 | SRP484717 | Illumina NovaSeq 6000 | SRS20187400 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025086 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_59 (21PG51-2) | SAMN39503756 | 17/02/2025 | ||||||||||||||||
| 255 | SRX23311075 | SRP484717 | Illumina NovaSeq 6000 | SRS20187403 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025087 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_6 (21PG50-2) | SAMN39503755 | 17/02/2025 | ||||||||||||||||
| 256 | SRX23311076 | SRP484717 | Illumina NovaSeq 6000 | SRS20187405 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025088 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_60 (21PG51-2) | SAMN39503754 | 17/02/2025 | ||||||||||||||||
| 257 | SRX23311077 | SRP484717 | Illumina NovaSeq 6000 | SRS20187404 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025089 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_61 (21PG51-2) | SAMN39503753 | 17/02/2025 | ||||||||||||||||
| 258 | SRX23311078 | SRP484717 | Illumina NovaSeq 6000 | SRS20187406 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025090 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_62 (21PG51-3) | SAMN39503752 | 17/02/2025 | ||||||||||||||||
| 259 | SRX23311079 | SRP484717 | Illumina NovaSeq 6000 | SRS20187408 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025091 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_63 (21PG51-3) | SAMN39503751 | 17/02/2025 | ||||||||||||||||
| 260 | SRX23311464 | SRP484717 | Illumina NovaSeq 6000 | SRS20187792 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025092 | Early blastocyst: E4.5 | ICM: PE | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_64 (21PG51-3) | SAMN39503750 | 17/02/2025 | ||||||||||||||||
| 261 | SRX23311465 | SRP484717 | Illumina NovaSeq 6000 | SRS20187793 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025093 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_65 (21PG51-3) | SAMN39503749 | 17/02/2025 | ||||||||||||||||
| 262 | SRX23311466 | SRP484717 | Illumina NovaSeq 6000 | SRS20187794 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025094 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_66 (21PG51-3) | SAMN39503748 | 17/02/2025 | ||||||||||||||||
| 263 | SRX23311467 | SRP484717 | Illumina NovaSeq 6000 | SRS20187797 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025095 | Early blastocyst: E4.5 | ICM: ICM | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_67 (21PG51-3) | SAMN39503747 | 17/02/2025 | ||||||||||||||||
| 264 | SRX23311468 | SRP484717 | Illumina NovaSeq 6000 | SRS20187795 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025096 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_68 (21PG51-3) | SAMN39503746 | 17/02/2025 | ||||||||||||||||
| 265 | SRX23311469 | SRP484717 | Illumina NovaSeq 6000 | SRS20187796 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025097 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_69 (21PG51-3) | SAMN39503745 | 17/02/2025 | ||||||||||||||||
| 266 | SRX23311470 | SRP484717 | Illumina NovaSeq 6000 | SRS20187798 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025098 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_7 (21PG50-2) | SAMN39503744 | 17/02/2025 | ||||||||||||||||
| 267 | SRX23311471 | SRP484717 | Illumina NovaSeq 6000 | SRS20187799 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025099 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_70 (21PG51-3) | SAMN39503743 | 17/02/2025 | ||||||||||||||||
| 268 | SRX23311129 | SRP484717 | Illumina NovaSeq 6000 | SRS20187457 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025100 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_71 (21PG51-3) | SAMN39503742 | 17/02/2025 | ||||||||||||||||
| 269 | SRX23311130 | SRP484717 | Illumina NovaSeq 6000 | SRS20187458 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025101 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_72 (21PG51-3) | SAMN39503741 | 17/02/2025 | ||||||||||||||||
| 270 | SRX23311131 | SRP484717 | Illumina NovaSeq 6000 | SRS20187459 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025102 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_73 (21PG51-3) | SAMN39503740 | 17/02/2025 | ||||||||||||||||
| 271 | SRX23311132 | SRP484717 | Illumina NovaSeq 6000 | SRS20187461 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025103 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_74 (21PG76-1) | SAMN39503739 | 17/02/2025 | ||||||||||||||||
| 272 | SRX23311133 | SRP484717 | Illumina NovaSeq 6000 | SRS20187460 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025104 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_75 (21PG76-1) | SAMN39503738 | 17/02/2025 | ||||||||||||||||
| 273 | SRX23311134 | SRP484717 | Illumina NovaSeq 6000 | SRS20187462 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025105 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_76 (21PG76-1) | SAMN39503737 | 17/02/2025 | ||||||||||||||||
| 274 | SRX23310901 | SRP484717 | Illumina NovaSeq 6000 | SRS20187229 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025109 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_8 (21PG50-2) | SAMN39503733 | 17/02/2025 | ||||||||||||||||
| 275 | SRX23310902 | SRP484717 | Illumina NovaSeq 6000 | SRS20187230 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025110 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_80 (21PG76-2) | SAMN39503732 | 17/02/2025 | ||||||||||||||||
| 276 | SRX23311082 | SRP484717 | Illumina NovaSeq 6000 | SRS20187410 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025118 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_88 (21PG76-2) | SAMN39503724 | 17/02/2025 | ||||||||||||||||
| 277 | SRX23311083 | SRP484717 | Illumina NovaSeq 6000 | SRS20187412 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025119 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_89 (21PG76-2) | SAMN39503723 | 17/02/2025 | ||||||||||||||||
| 278 | SRX23311084 | SRP484717 | Illumina NovaSeq 6000 | SRS20187413 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025120 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_9 (21PG39-1) | SAMN39503722 | 17/02/2025 | ||||||||||||||||
| 279 | SRX23311085 | SRP484717 | Illumina NovaSeq 6000 | SRS20187414 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025121 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_90 (21PG76-2) | SAMN39503721 | 17/02/2025 | ||||||||||||||||
| 280 | SRX23311472 | SRP484717 | Illumina NovaSeq 6000 | SRS20187800 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025124 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_93 (21PG76-2) | SAMN39503718 | 17/02/2025 | ||||||||||||||||
| 281 | SRX23311473 | SRP484717 | Illumina NovaSeq 6000 | SRS20187803 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025125 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_94 (21PG76-2) | SAMN39503717 | 17/02/2025 | ||||||||||||||||
| 282 | SRX23311475 | SRP484717 | Illumina NovaSeq 6000 | SRS20187804 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025127 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_96 (21PG76-2) | SAMN39503715 | 17/02/2025 | ||||||||||||||||
| 283 | SRX23311476 | SRP484717 | Illumina NovaSeq 6000 | SRS20187802 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025128 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_97 (21PG55-2) | SAMN39503714 | 17/02/2025 | ||||||||||||||||
| 284 | SRX23311477 | SRP484717 | Illumina NovaSeq 6000 | SRS20187805 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025129 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_98 (21PG55-2) | SAMN39503713 | 17/02/2025 | ||||||||||||||||
| 285 | SRX23311478 | SRP484717 | Illumina NovaSeq 6000 | SRS20187806 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025130 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_99 (21PG55-2) | SAMN39503712 | 17/02/2025 | ||||||||||||||||
| 286 | SRX23311479 | SRP484717 | Illumina NovaSeq 6000 | SRS20187808 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025131 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_1 (21PG50-3) | SAMN39503711 | 17/02/2025 | ||||||||||||||||
| 287 | SRX23311137 | SRP484717 | Illumina NovaSeq 6000 | SRS20187463 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025132 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_10 (21PG77-1) | SAMN39503710 | 17/02/2025 | ||||||||||||||||
| 288 | SRX23311138 | SRP484717 | Illumina NovaSeq 6000 | SRS20187466 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025133 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_100 (21PG55-3) | SAMN39503709 | 17/02/2025 | ||||||||||||||||
| 289 | SRX23311139 | SRP484717 | Illumina NovaSeq 6000 | SRS20187467 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025134 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_101 (21PG55-3) | SAMN39503708 | 17/02/2025 | ||||||||||||||||
| 290 | SRX23311140 | SRP484717 | Illumina NovaSeq 6000 | SRS20187469 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025135 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_102 (21PG55-3) | SAMN39503707 | 17/02/2025 | ||||||||||||||||
| 291 | SRX23311141 | SRP484717 | Illumina NovaSeq 6000 | SRS20187470 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025136 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_103 (21PG55-3) | SAMN39503706 | 17/02/2025 | ||||||||||||||||
| 292 | SRX23311142 | SRP484717 | Illumina NovaSeq 6000 | SRS20187468 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025137 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_104 (21PG55-3) | SAMN39503705 | 17/02/2025 | ||||||||||||||||
| 293 | SRX23311143 | SRP484717 | Illumina NovaSeq 6000 | SRS20187472 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025138 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_105 (21PG55-3) | SAMN39503704 | 17/02/2025 | ||||||||||||||||
| 294 | SRX23311144 | SRP484717 | Illumina NovaSeq 6000 | SRS20187471 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025139 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_106 (21PG55-3) | SAMN39503703 | 17/02/2025 | ||||||||||||||||
| 295 | SRX23310908 | SRP484717 | Illumina NovaSeq 6000 | SRS20187237 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025140 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_107 (21PG55-3) | SAMN39503702 | 17/02/2025 | ||||||||||||||||
| 296 | SRX23310909 | SRP484717 | Illumina NovaSeq 6000 | SRS20187236 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025141 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_108 (21PG55-3) | SAMN39503701 | 17/02/2025 | ||||||||||||||||
| 297 | SRX23310910 | SRP484717 | Illumina NovaSeq 6000 | SRS20187238 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025142 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_109 (21PG55-3) | SAMN39503700 | 17/02/2025 | ||||||||||||||||
| 298 | SRX23310911 | SRP484717 | Illumina NovaSeq 6000 | SRS20187239 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025143 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_11 (21PG77-1) | SAMN39503699 | 17/02/2025 | ||||||||||||||||
| 299 | SRX23311312 | SRP484717 | Illumina NovaSeq 6000 | SRS20187640 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025144 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_110 (21PG55-3) | SAMN39503698 | 17/02/2025 | ||||||||||||||||
| 300 | SRX23311313 | SRP484717 | Illumina NovaSeq 6000 | SRS20187641 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025145 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_111 (21PG55-3) | SAMN39503697 | 17/02/2025 | ||||||||||||||||
| 301 | SRX23311314 | SRP484717 | Illumina NovaSeq 6000 | SRS20187643 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025146 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_112 (21PG55-3) | SAMN39503696 | 17/02/2025 | ||||||||||||||||
| 302 | SRX23311175 | SRP484717 | Illumina NovaSeq 6000 | SRS20187504 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025148 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_114 (21PG55-3) | SAMN39503694 | 17/02/2025 | ||||||||||||||||
| 303 | SRX23311176 | SRP484717 | Illumina NovaSeq 6000 | SRS20187503 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025149 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_115 (21PG55-3) | SAMN39503693 | 17/02/2025 | ||||||||||||||||
| 304 | SRX23311177 | SRP484717 | Illumina NovaSeq 6000 | SRS20187505 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025150 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_116 (21PG49-1) | SAMN39503692 | 17/02/2025 | ||||||||||||||||
| 305 | SRX23311178 | SRP484717 | Illumina NovaSeq 6000 | SRS20187506 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025151 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_117 (21PG49-1) | SAMN39503691 | 17/02/2025 | ||||||||||||||||
| 306 | SRX23311179 | SRP484717 | Illumina NovaSeq 6000 | SRS20187507 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025152 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_118 (21PG49-1) | SAMN39503690 | 17/02/2025 | ||||||||||||||||
| 307 | SRX23311180 | SRP484717 | Illumina NovaSeq 6000 | SRS20187508 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025153 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_119 (21PG49-1) | SAMN39503689 | 17/02/2025 | ||||||||||||||||
| 308 | SRX23311181 | SRP484717 | Illumina NovaSeq 6000 | SRS20187509 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025154 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_12 (21PG77-1) | SAMN39503688 | 17/02/2025 | ||||||||||||||||
| 309 | SRX23311182 | SRP484717 | Illumina NovaSeq 6000 | SRS20187510 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025155 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_120 (21PG49-1) | SAMN39503687 | 17/02/2025 | ||||||||||||||||
| 310 | SRX23311480 | SRP484717 | Illumina NovaSeq 6000 | SRS20187807 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025156 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_121 (21PG49-1) | SAMN39503686 | 17/02/2025 | ||||||||||||||||
| 311 | SRX23311481 | SRP484717 | Illumina NovaSeq 6000 | SRS20187809 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025157 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_122 (21PG49-1) | SAMN39503685 | 17/02/2025 | ||||||||||||||||
| 312 | SRX23311483 | SRP484717 | Illumina NovaSeq 6000 | SRS20187811 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025159 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_124 (21PG49-1) | SAMN39503683 | 17/02/2025 | ||||||||||||||||
| 313 | SRX23311484 | SRP484717 | Illumina NovaSeq 6000 | SRS20187812 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025160 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_125 (21PG49-1) | SAMN39503682 | 17/02/2025 | ||||||||||||||||
| 314 | SRX23311485 | SRP484717 | Illumina NovaSeq 6000 | SRS20187813 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025161 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_126 (21PG49-1) | SAMN39503681 | 17/02/2025 | ||||||||||||||||
| 315 | SRX23310912 | SRP484717 | Illumina NovaSeq 6000 | SRS20187240 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025162 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_127 (21PG49-1) | SAMN39503680 | 17/02/2025 | ||||||||||||||||
| 316 | SRX23310913 | SRP484717 | Illumina NovaSeq 6000 | SRS20187241 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025163 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_128 (21PG49-1) | SAMN39503679 | 17/02/2025 | ||||||||||||||||
| 317 | SRX23311146 | SRP484717 | Illumina NovaSeq 6000 | SRS20187474 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025165 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_13 (21PG77-1) | SAMN39503677 | 17/02/2025 | ||||||||||||||||
| 318 | SRX23311148 | SRP484717 | Illumina NovaSeq 6000 | SRS20187475 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025167 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_131 (21PG49-2) | SAMN39503675 | 17/02/2025 | ||||||||||||||||
| 319 | SRX23311149 | SRP484717 | Illumina NovaSeq 6000 | SRS20187480 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025168 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_132 (21PG49-2) | SAMN39503674 | 17/02/2025 | ||||||||||||||||
| 320 | SRX23311150 | SRP484717 | Illumina NovaSeq 6000 | SRS20187479 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025169 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_133 (21PG49-2) | SAMN39503673 | 17/02/2025 | ||||||||||||||||
| 321 | SRX23311151 | SRP484717 | Illumina NovaSeq 6000 | SRS20187477 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025170 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_134 (21PG49-2) | SAMN39503672 | 17/02/2025 | ||||||||||||||||
| 322 | SRX23311152 | SRP484717 | Illumina NovaSeq 6000 | SRS20187478 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025171 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_135 (21PG49-2) | SAMN39503671 | 17/02/2025 | ||||||||||||||||
| 323 | SRX23311316 | SRP484717 | Illumina NovaSeq 6000 | SRS20187642 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025172 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_136 (21PG49-2) | SAMN39503670 | 17/02/2025 | ||||||||||||||||
| 324 | SRX23311317 | SRP484717 | Illumina NovaSeq 6000 | SRS20187645 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025173 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_137 (21PG49-2) | SAMN39503669 | 17/02/2025 | ||||||||||||||||
| 325 | SRX23311318 | SRP484717 | Illumina NovaSeq 6000 | SRS20187646 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025174 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_138 (21PG49-2) | SAMN39503668 | 17/02/2025 | ||||||||||||||||
| 326 | SRX23311319 | SRP484717 | Illumina NovaSeq 6000 | SRS20187648 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025175 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_139 (21PG49-2) | SAMN39503667 | 17/02/2025 | ||||||||||||||||
| 327 | SRX23311320 | SRP484717 | Illumina NovaSeq 6000 | SRS20187647 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025176 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_14 (21PG77-1) | SAMN39503666 | 17/02/2025 | ||||||||||||||||
| 328 | SRX23311321 | SRP484717 | Illumina NovaSeq 6000 | SRS20187649 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025177 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_140 (21PG49-2) | SAMN39503665 | 17/02/2025 | ||||||||||||||||
| 329 | SRX23311322 | SRP484717 | Illumina NovaSeq 6000 | SRS20187650 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025178 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_141 (21PG53-2) | SAMN39503664 | 17/02/2025 | ||||||||||||||||
| 330 | SRX23311323 | SRP484717 | Illumina NovaSeq 6000 | SRS20187652 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025179 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_142 (21PG53-2) | SAMN39503663 | 17/02/2025 | ||||||||||||||||
| 331 | SRX23311183 | SRP484717 | Illumina NovaSeq 6000 | SRS20187511 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025180 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_143 (21PG53-2) | SAMN39503662 | 17/02/2025 | ||||||||||||||||
| 332 | SRX23311184 | SRP484717 | Illumina NovaSeq 6000 | SRS20187512 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025181 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_144 (21PG53-2) | SAMN39503661 | 17/02/2025 | ||||||||||||||||
| 333 | SRX23311185 | SRP484717 | Illumina NovaSeq 6000 | SRS20187514 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025182 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_145 (21PG53-2) | SAMN39503660 | 17/02/2025 | ||||||||||||||||
| 334 | SRX23311186 | SRP484717 | Illumina NovaSeq 6000 | SRS20187513 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025183 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_146 (21PG53-2) | SAMN39503659 | 17/02/2025 | ||||||||||||||||
| 335 | SRX23311187 | SRP484717 | Illumina NovaSeq 6000 | SRS20187518 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025184 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_147 (21PG53-2) | SAMN39503658 | 17/02/2025 | ||||||||||||||||
| 336 | SRX23311188 | SRP484717 | Illumina NovaSeq 6000 | SRS20187515 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025185 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_148 (21PG53-2) | SAMN39503657 | 17/02/2025 | ||||||||||||||||
| 337 | SRX23311189 | SRP484717 | Illumina NovaSeq 6000 | SRS20187516 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025186 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_149 (21PG53-2) | SAMN39503656 | 17/02/2025 | ||||||||||||||||
| 338 | SRX23311190 | SRP484717 | Illumina NovaSeq 6000 | SRS20187519 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025187 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_15 (21PG77-1) | SAMN39503655 | 17/02/2025 | ||||||||||||||||
| 339 | SRX23310914 | SRP484717 | Illumina NovaSeq 6000 | SRS20187242 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025188 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_150 (21PG53-2) | SAMN39503654 | 17/02/2025 | ||||||||||||||||
| 340 | SRX23310915 | SRP484717 | Illumina NovaSeq 6000 | SRS20187243 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025189 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_151 (21PG53-2) | SAMN39503653 | 17/02/2025 | ||||||||||||||||
| 341 | SRX23310916 | SRP484717 | Illumina NovaSeq 6000 | SRS20187244 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025190 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_152 (21PG53-2) | SAMN39503652 | 17/02/2025 | ||||||||||||||||
| 342 | SRX23310917 | SRP484717 | Illumina NovaSeq 6000 | SRS20187245 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025191 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_153 (21PG53-2) | SAMN39503651 | 17/02/2025 | ||||||||||||||||
| 343 | SRX23310918 | SRP484717 | Illumina NovaSeq 6000 | SRS20187246 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025192 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_154 (21PG53-2) | SAMN39503650 | 17/02/2025 | ||||||||||||||||
| 344 | SRX23310919 | SRP484717 | Illumina NovaSeq 6000 | SRS20187247 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025193 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_155 (21PG53-2) | SAMN39503649 | 17/02/2025 | ||||||||||||||||
| 345 | SRX23310920 | SRP484717 | Illumina NovaSeq 6000 | SRS20187248 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025194 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_156 (21PG53-2) | SAMN39503648 | 17/02/2025 | ||||||||||||||||
| 346 | SRX23310921 | SRP484717 | Illumina NovaSeq 6000 | SRS20187249 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025195 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_157 (21PG53-2) | SAMN39503647 | 17/02/2025 | ||||||||||||||||
| 347 | SRX23311153 | SRP484717 | Illumina NovaSeq 6000 | SRS20187481 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025196 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_158 (21PG53-2) | SAMN39503646 | 17/02/2025 | ||||||||||||||||
| 348 | SRX23311154 | SRP484717 | Illumina NovaSeq 6000 | SRS20187482 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025197 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_159 (21PG53-2) | SAMN39503645 | 17/02/2025 | ||||||||||||||||
| 349 | SRX23311155 | SRP484717 | Illumina NovaSeq 6000 | SRS20187483 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025198 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_16 (21PG77-1) | SAMN39503644 | 17/02/2025 | ||||||||||||||||
| 350 | SRX23311156 | SRP484717 | Illumina NovaSeq 6000 | SRS20187484 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025199 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_160 (21PG53-2) | SAMN39503643 | 17/02/2025 | ||||||||||||||||
| 351 | SRX23311157 | SRP484717 | Illumina NovaSeq 6000 | SRS20187485 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025200 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_161 (21PG53-2) | SAMN39503642 | 17/02/2025 | ||||||||||||||||
| 352 | SRX23311158 | SRP484717 | Illumina NovaSeq 6000 | SRS20187486 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025201 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_162 (21PG53-2) | SAMN39503641 | 17/02/2025 | ||||||||||||||||
| 353 | SRX23311159 | SRP484717 | Illumina NovaSeq 6000 | SRS20187487 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025202 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_163 (21PG53-2) | SAMN39503640 | 17/02/2025 | ||||||||||||||||
| 354 | SRX23311160 | SRP484717 | Illumina NovaSeq 6000 | SRS20187488 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025203 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_164 (21PG53-2) | SAMN39503639 | 17/02/2025 | ||||||||||||||||
| 355 | SRX23311324 | SRP484717 | Illumina NovaSeq 6000 | SRS20187651 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025204 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_165 (21PG53-2) | SAMN39503638 | 17/02/2025 | ||||||||||||||||
| 356 | SRX23311325 | SRP484717 | Illumina NovaSeq 6000 | SRS20187653 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025205 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_166 (21PG53-2) | SAMN39503637 | 17/02/2025 | ||||||||||||||||
| 357 | SRX23311326 | SRP484717 | Illumina NovaSeq 6000 | SRS20187655 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025206 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_167 (21PG53-2) | SAMN39503636 | 17/02/2025 | ||||||||||||||||
| 358 | SRX23311327 | SRP484717 | Illumina NovaSeq 6000 | SRS20187654 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025207 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_168 (21PG32-2) | SAMN39503635 | 17/02/2025 | ||||||||||||||||
| 359 | SRX23311328 | SRP484717 | Illumina NovaSeq 6000 | SRS20187661 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025208 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_169 (21PG32-2) | SAMN39503634 | 17/02/2025 | ||||||||||||||||
| 360 | SRX23311329 | SRP484717 | Illumina NovaSeq 6000 | SRS20187662 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025209 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_17 (21PG77-1) | SAMN39503633 | 17/02/2025 | ||||||||||||||||
| 361 | SRX23311330 | SRP484717 | Illumina NovaSeq 6000 | SRS20187656 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025210 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_170 (21PG32-2) | SAMN39503632 | 17/02/2025 | ||||||||||||||||
| 362 | SRX23311331 | SRP484717 | Illumina NovaSeq 6000 | SRS20187659 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025211 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_171 (21PG32-2) | SAMN39503631 | 17/02/2025 | ||||||||||||||||
| 363 | SRX23311191 | SRP484717 | Illumina NovaSeq 6000 | SRS20187517 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025212 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_172 (21PG32-2) | SAMN39503630 | 17/02/2025 | ||||||||||||||||
| 364 | SRX23311192 | SRP484717 | Illumina NovaSeq 6000 | SRS20187520 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025213 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_173 (21PG32-2) | SAMN39503629 | 17/02/2025 | ||||||||||||||||
| 365 | SRX23311193 | SRP484717 | Illumina NovaSeq 6000 | SRS20187521 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025214 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_174 (21PG32-2) | SAMN39503628 | 17/02/2025 | ||||||||||||||||
| 366 | SRX23311194 | SRP484717 | Illumina NovaSeq 6000 | SRS20187522 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025215 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_175 (21PG32-2) | SAMN39503627 | 17/02/2025 | ||||||||||||||||
| 367 | SRX23311195 | SRP484717 | Illumina NovaSeq 6000 | SRS20187525 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025216 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_176 (21PG32-2) | SAMN39503626 | 17/02/2025 | ||||||||||||||||
| 368 | SRX23311196 | SRP484717 | Illumina NovaSeq 6000 | SRS20187524 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025217 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_177 (21PG32-2) | SAMN39503625 | 17/02/2025 | ||||||||||||||||
| 369 | SRX23311197 | SRP484717 | Illumina NovaSeq 6000 | SRS20187523 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025218 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_178 (21PG32-2) | SAMN39503624 | 17/02/2025 | ||||||||||||||||
| 370 | SRX23311198 | SRP484717 | Illumina NovaSeq 6000 | SRS20187527 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025219 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_179 (21PG32-2) | SAMN39503623 | 17/02/2025 | ||||||||||||||||
| 371 | SRX23310922 | SRP484717 | Illumina NovaSeq 6000 | SRS20187250 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025220 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_18 (21PG77-1) | SAMN39503622 | 17/02/2025 | ||||||||||||||||
| 372 | SRX23310923 | SRP484717 | Illumina NovaSeq 6000 | SRS20187252 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025221 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_180 (21PG32-2) | SAMN39503621 | 17/02/2025 | ||||||||||||||||
| 373 | SRX23310924 | SRP484717 | Illumina NovaSeq 6000 | SRS20187253 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025222 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_19 (21PG77-1) | SAMN39503620 | 17/02/2025 | ||||||||||||||||
| 374 | SRX23310925 | SRP484717 | Illumina NovaSeq 6000 | SRS20187251 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025223 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_191 (21PG49-1) | SAMN39503619 | 17/02/2025 | ||||||||||||||||
| 375 | SRX23310926 | SRP484717 | Illumina NovaSeq 6000 | SRS20187254 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025224 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_192 (21PG49-1) | SAMN39503618 | 17/02/2025 | ||||||||||||||||
| 376 | SRX23310927 | SRP484717 | Illumina NovaSeq 6000 | SRS20187255 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025225 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_193 (21PG57-2) | SAMN39503617 | 17/02/2025 | ||||||||||||||||
| 377 | SRX23310928 | SRP484717 | Illumina NovaSeq 6000 | SRS20187256 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025226 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_194 (21PG57-2) | SAMN39503616 | 17/02/2025 | ||||||||||||||||
| 378 | SRX23310929 | SRP484717 | Illumina NovaSeq 6000 | SRS20187258 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025227 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_195 (21PG57-2) | SAMN39503615 | 17/02/2025 | ||||||||||||||||
| 379 | SRX23311161 | SRP484717 | Illumina NovaSeq 6000 | SRS20187490 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025228 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_196 (21PG57-2) | SAMN39503614 | 17/02/2025 | ||||||||||||||||
| 380 | SRX23311163 | SRP484717 | Illumina NovaSeq 6000 | SRS20187492 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025230 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_198 (21PG57-2) | SAMN39503612 | 17/02/2025 | ||||||||||||||||
| 381 | SRX23311164 | SRP484717 | Illumina NovaSeq 6000 | SRS20187494 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025231 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_199 (21PG57-2) | SAMN39503611 | 17/02/2025 | ||||||||||||||||
| 382 | SRX23311165 | SRP484717 | Illumina NovaSeq 6000 | SRS20187493 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025232 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_2 (21PG50-3) | SAMN39503610 | 17/02/2025 | ||||||||||||||||
| 383 | SRX23311166 | SRP484717 | Illumina NovaSeq 6000 | SRS20187491 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025233 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_20 (21PG77-1) | SAMN39503609 | 17/02/2025 | ||||||||||||||||
| 384 | SRX23311167 | SRP484717 | Illumina NovaSeq 6000 | SRS20187495 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025234 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_200 (21PG57-2) | SAMN39503608 | 17/02/2025 | ||||||||||||||||
| 385 | SRX23311332 | SRP484717 | Illumina NovaSeq 6000 | SRS20187657 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025236 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_202 (21PG57-2) | SAMN39503606 | 17/02/2025 | ||||||||||||||||
| 386 | SRX23311333 | SRP484717 | Illumina NovaSeq 6000 | SRS20187658 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025237 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_203 (21PG57-2) | SAMN39503605 | 17/02/2025 | ||||||||||||||||
| 387 | SRX23311335 | SRP484717 | Illumina NovaSeq 6000 | SRS20187663 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025239 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_205 (21PG57-2) | SAMN39503603 | 17/02/2025 | ||||||||||||||||
| 388 | SRX23311336 | SRP484717 | Illumina NovaSeq 6000 | SRS20187664 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025240 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_206 (21PG57-2) | SAMN39503602 | 17/02/2025 | ||||||||||||||||
| 389 | SRX23311337 | SRP484717 | Illumina NovaSeq 6000 | SRS20187665 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025241 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_207 (21PG57-2) | SAMN39503601 | 17/02/2025 | ||||||||||||||||
| 390 | SRX23311338 | SRP484717 | Illumina NovaSeq 6000 | SRS20187666 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025242 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_208 (21PG57-2) | SAMN39503600 | 17/02/2025 | ||||||||||||||||
| 391 | SRX23311339 | SRP484717 | Illumina NovaSeq 6000 | SRS20187667 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025243 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_209 (21PG75-4) | SAMN39503599 | 17/02/2025 | ||||||||||||||||
| 392 | SRX23311199 | SRP484717 | Illumina NovaSeq 6000 | SRS20187526 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025244 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_21 (21PG77-1) | SAMN39503598 | 17/02/2025 | ||||||||||||||||
| 393 | SRX23311200 | SRP484717 | Illumina NovaSeq 6000 | SRS20187528 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025245 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_210 (21PG75-4) | SAMN39503597 | 17/02/2025 | ||||||||||||||||
| 394 | SRX23311201 | SRP484717 | Illumina NovaSeq 6000 | SRS20187530 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025246 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_211 (21PG75-4) | SAMN39503596 | 17/02/2025 | ||||||||||||||||
| 395 | SRX23311202 | SRP484717 | Illumina NovaSeq 6000 | SRS20187532 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025247 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_212 (21PG75-4) | SAMN39503595 | 17/02/2025 | ||||||||||||||||
| 396 | SRX23311203 | SRP484717 | Illumina NovaSeq 6000 | SRS20187531 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025248 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_213 (21PG75-4) | SAMN39503594 | 17/02/2025 | ||||||||||||||||
| 397 | SRX23311204 | SRP484717 | Illumina NovaSeq 6000 | SRS20187529 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025249 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_214 (21PG75-4) | SAMN39503593 | 17/02/2025 | ||||||||||||||||
| 398 | SRX23311205 | SRP484717 | Illumina NovaSeq 6000 | SRS20187534 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025250 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_215 (21PG75-4) | SAMN39503592 | 17/02/2025 | ||||||||||||||||
| 399 | SRX23311206 | SRP484717 | Illumina NovaSeq 6000 | SRS20187533 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025251 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_216 (21PG75-4) | SAMN39503591 | 17/02/2025 | ||||||||||||||||
| 400 | SRX23311169 | SRP484717 | Illumina NovaSeq 6000 | SRS20187497 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025252 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_217 (21PG75-4) | SAMN39503590 | 17/02/2025 | ||||||||||||||||
| 401 | SRX23311170 | SRP484717 | Illumina NovaSeq 6000 | SRS20187498 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025253 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_218 (21PG75-4) | SAMN39503589 | 17/02/2025 | ||||||||||||||||
| 402 | SRX23311171 | SRP484717 | Illumina NovaSeq 6000 | SRS20187500 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025254 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_219 (21PG75-4) | SAMN39503588 | 17/02/2025 | ||||||||||||||||
| 403 | SRX23311172 | SRP484717 | Illumina NovaSeq 6000 | SRS20187499 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025255 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_22 (21PG77-1) | SAMN39503587 | 17/02/2025 | ||||||||||||||||
| 404 | SRX23311260 | SRP484717 | Illumina NovaSeq 6000 | SRS20187592 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025256 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_220 (21PG75-4) | SAMN39503586 | 17/02/2025 | ||||||||||||||||
| 405 | SRX23311261 | SRP484717 | Illumina NovaSeq 6000 | SRS20187587 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025257 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_221 (21PG75-4) | SAMN39503585 | 17/02/2025 | ||||||||||||||||
| 406 | SRX23311262 | SRP484717 | Illumina NovaSeq 6000 | SRS20187588 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025258 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_222 (21PG75-4) | SAMN39503584 | 17/02/2025 | ||||||||||||||||
| 407 | SRX23311263 | SRP484717 | Illumina NovaSeq 6000 | SRS20187598 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025259 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_223 (21PG75-4) | SAMN39503583 | 17/02/2025 | ||||||||||||||||
| 408 | SRX23311341 | SRP484717 | Illumina NovaSeq 6000 | SRS20187670 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025261 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_225 (21PG75-4) | SAMN39503581 | 17/02/2025 | ||||||||||||||||
| 409 | SRX23311342 | SRP484717 | Illumina NovaSeq 6000 | SRS20187669 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025262 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_226 (21PG75-4) | SAMN39503580 | 17/02/2025 | ||||||||||||||||
| 410 | SRX23311343 | SRP484717 | Illumina NovaSeq 6000 | SRS20187671 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025263 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_227 (21PG75-4) | SAMN39503579 | 17/02/2025 | ||||||||||||||||
| 411 | SRX23311345 | SRP484717 | Illumina NovaSeq 6000 | SRS20187673 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025265 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_23 (21PG77-1) | SAMN39503577 | 17/02/2025 | ||||||||||||||||
| 412 | SRX23311346 | SRP484717 | Illumina NovaSeq 6000 | SRS20187675 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025266 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_24 (21PG77-1) | SAMN39503576 | 17/02/2025 | ||||||||||||||||
| 413 | SRX23311347 | SRP484717 | Illumina NovaSeq 6000 | SRS20187676 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025267 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_25 (21PG40-2) | SAMN39503575 | 17/02/2025 | ||||||||||||||||
| 414 | SRX23311207 | SRP484717 | Illumina NovaSeq 6000 | SRS20187538 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025268 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_26 (21PG40-2) | SAMN39503574 | 17/02/2025 | ||||||||||||||||
| 415 | SRX23311211 | SRP484717 | Illumina NovaSeq 6000 | SRS20187536 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025272 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_269 (21PG76-2) | SAMN39503570 | 17/02/2025 | ||||||||||||||||
| 416 | SRX23311212 | SRP484717 | Illumina NovaSeq 6000 | SRS20187540 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025273 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_27 (21PG40-2) | SAMN39503569 | 17/02/2025 | ||||||||||||||||
| 417 | SRX23311213 | SRP484717 | Illumina NovaSeq 6000 | SRS20187541 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025274 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_270 (21PG76-2) | SAMN39503568 | 17/02/2025 | ||||||||||||||||
| 418 | SRX23311214 | SRP484717 | Illumina NovaSeq 6000 | SRS20187544 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025275 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_271 (21PG76-2) | SAMN39503567 | 17/02/2025 | ||||||||||||||||
| 419 | SRX23310935 | SRP484717 | Illumina NovaSeq 6000 | SRS20187263 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025281 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_277 (21PG76-2) | SAMN39503561 | 17/02/2025 | ||||||||||||||||
| 420 | SRX23311264 | SRP484717 | Illumina NovaSeq 6000 | SRS20187589 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025284 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_28 (21PG40-2) | SAMN39503558 | 17/02/2025 | ||||||||||||||||
| 421 | SRX23311266 | SRP484717 | Illumina NovaSeq 6000 | SRS20187594 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025286 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_281 (21PG45-2) | SAMN39503556 | 17/02/2025 | ||||||||||||||||
| 422 | SRX23311348 | SRP484717 | Illumina NovaSeq 6000 | SRS20187674 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025292 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_287 (21PG45-2) | SAMN39503550 | 17/02/2025 | ||||||||||||||||
| 423 | SRX23311350 | SRP484717 | Illumina NovaSeq 6000 | SRS20187677 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025294 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_289 (21PG35-1) | SAMN39503548 | 17/02/2025 | ||||||||||||||||
| 424 | SRX23311351 | SRP484717 | Illumina NovaSeq 6000 | SRS20187678 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025295 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_29 (21PG40-2) | SAMN39503547 | 17/02/2025 | ||||||||||||||||
| 425 | SRX23311352 | SRP484717 | Illumina NovaSeq 6000 | SRS20187680 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025296 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_290 (21PG35-1) | SAMN39503546 | 17/02/2025 | ||||||||||||||||
| 426 | SRX23311353 | SRP484717 | Illumina NovaSeq 6000 | SRS20187681 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025297 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_291 (21PG35-1) | SAMN39503545 | 17/02/2025 | ||||||||||||||||
| 427 | SRX23311216 | SRP484717 | Illumina NovaSeq 6000 | SRS20187542 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025301 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_295 (21PG35-1) | SAMN39503541 | 17/02/2025 | ||||||||||||||||
| 428 | SRX23311217 | SRP484717 | Illumina NovaSeq 6000 | SRS20187543 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025302 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_296 (21PG65-1) | SAMN39503540 | 17/02/2025 | ||||||||||||||||
| 429 | SRX23311218 | SRP484717 | Illumina NovaSeq 6000 | SRS20187546 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025303 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_297 (21PG65-1) | SAMN39503539 | 17/02/2025 | ||||||||||||||||
| 430 | SRX23311219 | SRP484717 | Illumina NovaSeq 6000 | SRS20187547 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025304 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_298 (21PG65-1) | SAMN39503538 | 17/02/2025 | ||||||||||||||||
| 431 | SRX23311220 | SRP484717 | Illumina NovaSeq 6000 | SRS20187548 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025305 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_299 (21PG65-1) | SAMN39503537 | 17/02/2025 | ||||||||||||||||
| 432 | SRX23311221 | SRP484717 | Illumina NovaSeq 6000 | SRS20187549 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025306 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_3 (21PG50-3) | SAMN39503536 | 17/02/2025 | ||||||||||||||||
| 433 | SRX23311222 | SRP484717 | Illumina NovaSeq 6000 | SRS20187551 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025307 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_30 (21PG40-2) | SAMN39503535 | 17/02/2025 | ||||||||||||||||
| 434 | SRX23310938 | SRP484717 | Illumina NovaSeq 6000 | SRS20187265 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025308 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_300 (21PG65-1) | SAMN39503534 | 17/02/2025 | ||||||||||||||||
| 435 | SRX23310939 | SRP484717 | Illumina NovaSeq 6000 | SRS20187267 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025309 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_301 (21PG65-1) | SAMN39503533 | 17/02/2025 | ||||||||||||||||
| 436 | SRX23310940 | SRP484717 | Illumina NovaSeq 6000 | SRS20187269 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025310 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_302 (21PG65-1) | SAMN39503532 | 17/02/2025 | ||||||||||||||||
| 437 | SRX23310941 | SRP484717 | Illumina NovaSeq 6000 | SRS20187268 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025311 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_303 (21PG65-1) | SAMN39503531 | 17/02/2025 | ||||||||||||||||
| 438 | SRX23310942 | SRP484717 | Illumina NovaSeq 6000 | SRS20187270 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025312 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_304 (21PG65-1) | SAMN39503530 | 17/02/2025 | ||||||||||||||||
| 439 | SRX23310943 | SRP484717 | Illumina NovaSeq 6000 | SRS20187271 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025313 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_305 (21PG65-1) | SAMN39503529 | 17/02/2025 | ||||||||||||||||
| 440 | SRX23310944 | SRP484717 | Illumina NovaSeq 6000 | SRS20187272 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025314 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_306 (21PG65-1) | SAMN39503528 | 17/02/2025 | ||||||||||||||||
| 441 | SRX23310945 | SRP484717 | Illumina NovaSeq 6000 | SRS20187273 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025315 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_307 (21PG65-1) | SAMN39503527 | 17/02/2025 | ||||||||||||||||
| 442 | SRX23311272 | SRP484717 | Illumina NovaSeq 6000 | SRS20187602 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025316 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_308 (21PG65-1) | SAMN39503526 | 17/02/2025 | ||||||||||||||||
| 443 | SRX23311273 | SRP484717 | Illumina NovaSeq 6000 | SRS20187601 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025317 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_309 (21PG65-1) | SAMN39503525 | 17/02/2025 | ||||||||||||||||
| 444 | SRX23311274 | SRP484717 | Illumina NovaSeq 6000 | SRS20187600 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025318 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_31 (21PG40-2) | SAMN39503524 | 17/02/2025 | ||||||||||||||||
| 445 | SRX23311275 | SRP484717 | Illumina NovaSeq 6000 | SRS20187603 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025319 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_310 (21PG65-1) | SAMN39503523 | 17/02/2025 | ||||||||||||||||
| 446 | SRX23311276 | SRP484717 | Illumina NovaSeq 6000 | SRS20187604 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025320 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_311 (21PG65-1) | SAMN39503522 | 17/02/2025 | ||||||||||||||||
| 447 | SRX23311277 | SRP484717 | Illumina NovaSeq 6000 | SRS20187605 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025321 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_312 (21PG65-1) | SAMN39503521 | 17/02/2025 | ||||||||||||||||
| 448 | SRX23311278 | SRP484717 | Illumina NovaSeq 6000 | SRS20187606 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025322 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_313 (21PG65-1) | SAMN39503520 | 17/02/2025 | ||||||||||||||||
| 449 | SRX23311279 | SRP484717 | Illumina NovaSeq 6000 | SRS20187607 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025323 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_314 (21PG65-2) | SAMN39503519 | 17/02/2025 | ||||||||||||||||
| 450 | SRX23311356 | SRP484717 | Illumina NovaSeq 6000 | SRS20187682 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025324 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_315 (21PG65-2) | SAMN39503518 | 17/02/2025 | ||||||||||||||||
| 451 | SRX23311357 | SRP484717 | Illumina NovaSeq 6000 | SRS20187686 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025325 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_316 (21PG65-2) | SAMN39503517 | 17/02/2025 | ||||||||||||||||
| 452 | SRX23311358 | SRP484717 | Illumina NovaSeq 6000 | SRS20187685 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025326 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_317 (21PG65-2) | SAMN39503516 | 17/02/2025 | ||||||||||||||||
| 453 | SRX23311359 | SRP484717 | Illumina NovaSeq 6000 | SRS20187687 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025327 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_318 (21PG65-2) | SAMN39503515 | 17/02/2025 | ||||||||||||||||
| 454 | SRX23311360 | SRP484717 | Illumina NovaSeq 6000 | SRS20187688 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025328 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_319 (21PG65-2) | SAMN39503514 | 17/02/2025 | ||||||||||||||||
| 455 | SRX23311361 | SRP484717 | Illumina NovaSeq 6000 | SRS20187690 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025329 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_32 (21PG40-2) | SAMN39503513 | 17/02/2025 | ||||||||||||||||
| 456 | SRX23311362 | SRP484717 | Illumina NovaSeq 6000 | SRS20187689 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025330 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_320 (21PG65-2) | SAMN39503512 | 17/02/2025 | ||||||||||||||||
| 457 | SRX23311363 | SRP484717 | Illumina NovaSeq 6000 | SRS20187691 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025331 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_321 (21PG65-2) | SAMN39503511 | 17/02/2025 | ||||||||||||||||
| 458 | SRX23311223 | SRP484717 | Illumina NovaSeq 6000 | SRS20187550 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025332 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_322 (21PG65-2) | SAMN39503510 | 17/02/2025 | ||||||||||||||||
| 459 | SRX23311224 | SRP484717 | Illumina NovaSeq 6000 | SRS20187553 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025333 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_323 (20PG3-1) | SAMN39503509 | 17/02/2025 | ||||||||||||||||
| 460 | SRX23310946 | SRP484717 | Illumina NovaSeq 6000 | SRS20187274 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025340 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_33 (21PG40-2) | SAMN39503502 | 17/02/2025 | ||||||||||||||||
| 461 | SRX23310947 | SRP484717 | Illumina NovaSeq 6000 | SRS20187275 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025341 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_330 (20PG3-1) | SAMN39503501 | 17/02/2025 | ||||||||||||||||
| 462 | SRX23310948 | SRP484717 | Illumina NovaSeq 6000 | SRS20187276 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025342 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_331 (20PG3-1) | SAMN39503500 | 17/02/2025 | ||||||||||||||||
| 463 | SRX23310953 | SRP484717 | Illumina NovaSeq 6000 | SRS20187281 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025347 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_336 (20PG3-1) | SAMN39503495 | 17/02/2025 | ||||||||||||||||
| 464 | SRX23311282 | SRP484717 | Illumina NovaSeq 6000 | SRS20187609 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025350 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_339 (20PG3-1) | SAMN39503492 | 17/02/2025 | ||||||||||||||||
| 465 | SRX23311283 | SRP484717 | Illumina NovaSeq 6000 | SRS20187611 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025351 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_34 (21PG40-2) | SAMN39503491 | 17/02/2025 | ||||||||||||||||
| 466 | SRX23311284 | SRP484717 | Illumina NovaSeq 6000 | SRS20187612 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025352 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_340 (20PG3-1) | SAMN39503490 | 17/02/2025 | ||||||||||||||||
| 467 | SRX23311286 | SRP484717 | Illumina NovaSeq 6000 | SRS20187614 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025354 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_342 (20PG3-1) | SAMN39503488 | 17/02/2025 | ||||||||||||||||
| 468 | SRX23311366 | SRP484717 | Illumina NovaSeq 6000 | SRS20187693 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025358 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_346 (20PG4-3) | SAMN39503484 | 17/02/2025 | ||||||||||||||||
| 469 | SRX23311367 | SRP484717 | Illumina NovaSeq 6000 | SRS20187695 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025359 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_347 (20PG4-3) | SAMN39503483 | 17/02/2025 | ||||||||||||||||
| 470 | SRX23311368 | SRP484717 | Illumina NovaSeq 6000 | SRS20187697 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025360 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_348 (20PG4-3) | SAMN39503482 | 17/02/2025 | ||||||||||||||||
| 471 | SRX23311369 | SRP484717 | Illumina NovaSeq 6000 | SRS20187696 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025361 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_349 (20PG4-3) | SAMN39503481 | 17/02/2025 | ||||||||||||||||
| 472 | SRX23311370 | SRP484717 | Illumina NovaSeq 6000 | SRS20187700 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025362 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_35 (21PG40-2) | SAMN39503480 | 17/02/2025 | ||||||||||||||||
| 473 | SRX23311371 | SRP484717 | Illumina NovaSeq 6000 | SRS20187702 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025363 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_350 (20PG4-3) | SAMN39503479 | 17/02/2025 | ||||||||||||||||
| 474 | SRX23311231 | SRP484717 | Illumina NovaSeq 6000 | SRS20187560 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025364 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_351 (20PG4-3) | SAMN39503478 | 17/02/2025 | ||||||||||||||||
| 475 | SRX23311232 | SRP484717 | Illumina NovaSeq 6000 | SRS20187566 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025365 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_352 (20PG4-3) | SAMN39503477 | 17/02/2025 | ||||||||||||||||
| 476 | SRX23311233 | SRP484717 | Illumina NovaSeq 6000 | SRS20187559 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025366 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_353 (20PG4-3) | SAMN39503476 | 17/02/2025 | ||||||||||||||||
| 477 | SRX23311234 | SRP484717 | Illumina NovaSeq 6000 | SRS20187561 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025367 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_354 (20PG4-3) | SAMN39503475 | 17/02/2025 | ||||||||||||||||
| 478 | SRX23311235 | SRP484717 | Illumina NovaSeq 6000 | SRS20187562 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025368 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_355 (20PG4-3) | SAMN39503474 | 17/02/2025 | ||||||||||||||||
| 479 | SRX23311236 | SRP484717 | Illumina NovaSeq 6000 | SRS20187567 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025369 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_356 (20PG4-3) | SAMN39503473 | 17/02/2025 | ||||||||||||||||
| 480 | SRX23311237 | SRP484717 | Illumina NovaSeq 6000 | SRS20187563 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025370 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_357 (20PG4-3) | SAMN39503472 | 17/02/2025 | ||||||||||||||||
| 481 | SRX23311238 | SRP484717 | Illumina NovaSeq 6000 | SRS20187564 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025371 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_358 (20PG4-3) | SAMN39503471 | 17/02/2025 | ||||||||||||||||
| 482 | SRX23310954 | SRP484717 | Illumina NovaSeq 6000 | SRS20187282 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025372 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_359 (21PG33-2) | SAMN39503470 | 17/02/2025 | ||||||||||||||||
| 483 | SRX23310955 | SRP484717 | Illumina NovaSeq 6000 | SRS20187285 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025373 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_36 (21PG40-2) | SAMN39503469 | 17/02/2025 | ||||||||||||||||
| 484 | SRX23310956 | SRP484717 | Illumina NovaSeq 6000 | SRS20187283 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025374 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_360 (21PG33-2) | SAMN39503468 | 17/02/2025 | ||||||||||||||||
| 485 | SRX23310957 | SRP484717 | Illumina NovaSeq 6000 | SRS20187284 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025375 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_361 (21PG33-2) | SAMN39503467 | 17/02/2025 | ||||||||||||||||
| 486 | SRX23310958 | SRP484717 | Illumina NovaSeq 6000 | SRS20187286 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025376 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_362 (21PG33-2) | SAMN39503466 | 17/02/2025 | ||||||||||||||||
| 487 | SRX23310959 | SRP484717 | Illumina NovaSeq 6000 | SRS20187288 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025377 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_363 (21PG33-2) | SAMN39503465 | 17/02/2025 | ||||||||||||||||
| 488 | SRX23310960 | SRP484717 | Illumina NovaSeq 6000 | SRS20187287 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025378 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_364 (21PG33-2) | SAMN39503464 | 17/02/2025 | ||||||||||||||||
| 489 | SRX23310961 | SRP484717 | Illumina NovaSeq 6000 | SRS20187289 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025379 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_365 (21PG33-2) | SAMN39503463 | 17/02/2025 | ||||||||||||||||
| 490 | SRX23311288 | SRP484717 | Illumina NovaSeq 6000 | SRS20187615 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025380 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_366 (21PG33-2) | SAMN39503462 | 17/02/2025 | ||||||||||||||||
| 491 | SRX23311291 | SRP484717 | Illumina NovaSeq 6000 | SRS20187619 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025383 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_369 (21PG33-2) | SAMN39503459 | 17/02/2025 | ||||||||||||||||
| 492 | SRX23311292 | SRP484717 | Illumina NovaSeq 6000 | SRS20187620 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025384 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_37 (21PG40-2) | SAMN39503458 | 17/02/2025 | ||||||||||||||||
| 493 | SRX23311293 | SRP484717 | Illumina NovaSeq 6000 | SRS20187621 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025385 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_370 (21PG33-2) | SAMN39503457 | 17/02/2025 | ||||||||||||||||
| 494 | SRX23311294 | SRP484717 | Illumina NovaSeq 6000 | SRS20187626 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025386 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_371 (21PG33-2) | SAMN39503456 | 17/02/2025 | ||||||||||||||||
| 495 | SRX23311295 | SRP484717 | Illumina NovaSeq 6000 | SRS20187623 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025387 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_372 (21PG33-2) | SAMN39503455 | 17/02/2025 | ||||||||||||||||
| 496 | SRX23311373 | SRP484717 | Illumina NovaSeq 6000 | SRS20187699 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025389 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_39 (21PG40-2) | SAMN39503453 | 17/02/2025 | ||||||||||||||||
| 497 | SRX23311374 | SRP484717 | Illumina NovaSeq 6000 | SRS20187701 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025390 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_4 (21PG50-3) | SAMN39503452 | 17/02/2025 | ||||||||||||||||
| 498 | SRX23311376 | SRP484717 | Illumina NovaSeq 6000 | SRS20187704 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025392 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_41 (21PG33-1) | SAMN39503450 | 17/02/2025 | ||||||||||||||||
| 499 | SRX23311377 | SRP484717 | Illumina NovaSeq 6000 | SRS20187705 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025393 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_42 (21PG33-1) | SAMN39503449 | 17/02/2025 | ||||||||||||||||
| 500 | SRX23311378 | SRP484717 | Illumina NovaSeq 6000 | SRS20187706 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025394 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_43 (21PG33-1) | SAMN39503448 | 17/02/2025 | ||||||||||||||||
| 501 | SRX23311379 | SRP484717 | Illumina NovaSeq 6000 | SRS20187709 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025395 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_44 (21PG33-1) | SAMN39503447 | 17/02/2025 | ||||||||||||||||
| 502 | SRX23311239 | SRP484717 | Illumina NovaSeq 6000 | SRS20187573 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025396 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_45 (21PG33-1) | SAMN39503446 | 17/02/2025 | ||||||||||||||||
| 503 | SRX23311241 | SRP484717 | Illumina NovaSeq 6000 | SRS20187568 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025398 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_47 (21PG33-1) | SAMN39503444 | 17/02/2025 | ||||||||||||||||
| 504 | SRX23311242 | SRP484717 | Illumina NovaSeq 6000 | SRS20187569 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025399 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_48 (21PG33-1) | SAMN39503443 | 17/02/2025 | ||||||||||||||||
| 505 | SRX23311243 | SRP484717 | Illumina NovaSeq 6000 | SRS20187571 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025400 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_49 (21PG33-1) | SAMN39503442 | 17/02/2025 | ||||||||||||||||
| 506 | SRX23311244 | SRP484717 | Illumina NovaSeq 6000 | SRS20187570 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025401 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_5 (21PG50-3) | SAMN39503441 | 17/02/2025 | ||||||||||||||||
| 507 | SRX23311245 | SRP484717 | Illumina NovaSeq 6000 | SRS20187572 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025402 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_50 (21PG33-1) | SAMN39503440 | 17/02/2025 | ||||||||||||||||
| 508 | SRX23311246 | SRP484717 | Illumina NovaSeq 6000 | SRS20187574 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025403 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_51 (21PG33-1) | SAMN39503439 | 17/02/2025 | ||||||||||||||||
| 509 | SRX23310962 | SRP484717 | Illumina NovaSeq 6000 | SRS20187291 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025404 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_52 (21PG33-1) | SAMN39503438 | 17/02/2025 | ||||||||||||||||
| 510 | SRX23310963 | SRP484717 | Illumina NovaSeq 6000 | SRS20187290 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025405 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_53 (21PG33-1) | SAMN39503437 | 17/02/2025 | ||||||||||||||||
| 511 | SRX23310964 | SRP484717 | Illumina NovaSeq 6000 | SRS20187293 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025406 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_54 (21PG33-1) | SAMN39503436 | 17/02/2025 | ||||||||||||||||
| 512 | SRX23310965 | SRP484717 | Illumina NovaSeq 6000 | SRS20187292 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025407 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_55 (21PG33-1) | SAMN39503435 | 17/02/2025 | ||||||||||||||||
| 513 | SRX23310966 | SRP484717 | Illumina NovaSeq 6000 | SRS20187294 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025408 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_56 (21PG33-1) | SAMN39503434 | 17/02/2025 | ||||||||||||||||
| 514 | SRX23310967 | SRP484717 | Illumina NovaSeq 6000 | SRS20187295 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025409 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_57 (21PG33-1) | SAMN39503433 | 17/02/2025 | ||||||||||||||||
| 515 | SRX23310968 | SRP484717 | Illumina NovaSeq 6000 | SRS20187296 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025410 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_58 (21PG33-1) | SAMN39503432 | 17/02/2025 | ||||||||||||||||
| 516 | SRX23311296 | SRP484717 | Illumina NovaSeq 6000 | SRS20187622 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025412 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_6 (21PG50-3) | SAMN39503430 | 17/02/2025 | ||||||||||||||||
| 517 | SRX23311297 | SRP484717 | Illumina NovaSeq 6000 | SRS20187624 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025413 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_60 (21PG33-1) | SAMN39503429 | 17/02/2025 | ||||||||||||||||
| 518 | SRX23311298 | SRP484717 | Illumina NovaSeq 6000 | SRS20187627 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025414 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_61 (21PG33-1) | SAMN39503428 | 17/02/2025 | ||||||||||||||||
| 519 | SRX23311299 | SRP484717 | Illumina NovaSeq 6000 | SRS20187625 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025415 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_62 (21PG33-1) | SAMN39503427 | 17/02/2025 | ||||||||||||||||
| 520 | SRX23311383 | SRP484717 | Illumina NovaSeq 6000 | SRS20187711 | UBERON:0019252 | 8-cell stage embryo | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025423 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_7 (21PG50-3) | SAMN39503419 | 17/02/2025 | ||||||||||||||||
| 521 | SRX23311253 | SRP484717 | Illumina NovaSeq 6000 | SRS20187581 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025434 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_8 (21PG77-1) | SAMN39503408 | 17/02/2025 | ||||||||||||||||
| 522 | SRX23311254 | SRP484717 | Illumina NovaSeq 6000 | SRS20187582 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025435 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_80 (21PG42-2) | SAMN39503407 | 17/02/2025 | ||||||||||||||||
| 523 | SRX23310971 | SRP484717 | Illumina NovaSeq 6000 | SRS20187299 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025437 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_82 (21PG55-1) | SAMN39503405 | 17/02/2025 | ||||||||||||||||
| 524 | SRX23310972 | SRP484717 | Illumina NovaSeq 6000 | SRS20187300 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025438 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_83 (21PG55-1) | SAMN39503404 | 17/02/2025 | ||||||||||||||||
| 525 | SRX23310973 | SRP484717 | Illumina NovaSeq 6000 | SRS20187301 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025439 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_84 (21PG55-1) | SAMN39503403 | 17/02/2025 | ||||||||||||||||
| 526 | SRX23310974 | SRP484717 | Illumina NovaSeq 6000 | SRS20187302 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025440 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_85 (21PG55-1) | SAMN39503402 | 17/02/2025 | ||||||||||||||||
| 527 | SRX23310975 | SRP484717 | Illumina NovaSeq 6000 | SRS20187305 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025441 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_86 (21PG55-1) | SAMN39503401 | 17/02/2025 | ||||||||||||||||
| 528 | SRX23310976 | SRP484717 | Illumina NovaSeq 6000 | SRS20187304 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025442 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_87 (21PG55-1) | SAMN39503400 | 17/02/2025 | ||||||||||||||||
| 529 | SRX23310977 | SRP484717 | Illumina NovaSeq 6000 | SRS20187303 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025443 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_88 (21PG55-1) | SAMN39503399 | 17/02/2025 | ||||||||||||||||
| 530 | SRX23311304 | SRP484717 | Illumina NovaSeq 6000 | SRS20187631 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025444 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_89 (21PG55-1) | SAMN39503398 | 17/02/2025 | ||||||||||||||||
| 531 | SRX23311305 | SRP484717 | Illumina NovaSeq 6000 | SRS20187634 | UBERON:0000085 | morula | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025445 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_9 (21PG77-1) | SAMN39503397 | 17/02/2025 | ||||||||||||||||
| 532 | SRX23311306 | SRP484717 | Illumina NovaSeq 6000 | SRS20187632 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025446 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_90 (21PG55-1) | SAMN39503396 | 17/02/2025 | ||||||||||||||||
| 533 | SRX23311307 | SRP484717 | Illumina NovaSeq 6000 | SRS20187637 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025447 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_91 (21PG55-1) | SAMN39503395 | 17/02/2025 | ||||||||||||||||
| 534 | SRX23311309 | SRP484717 | Illumina NovaSeq 6000 | SRS20187636 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025449 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_93 (21PG55-1) | SAMN39503393 | 17/02/2025 | ||||||||||||||||
| 535 | SRX23311310 | SRP484717 | Illumina NovaSeq 6000 | SRS20187638 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025450 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_94 (21PG55-1) | SAMN39503392 | 17/02/2025 | ||||||||||||||||
| 536 | SRX23311311 | SRP484717 | Illumina NovaSeq 6000 | SRS20187639 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025451 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_95 (21PG55-1) | SAMN39503391 | 17/02/2025 | ||||||||||||||||
| 537 | SRX23311388 | SRP484717 | Illumina NovaSeq 6000 | SRS20187716 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025452 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_96 (21PG55-1) | SAMN39503390 | 17/02/2025 | ||||||||||||||||
| 538 | SRX23311389 | SRP484717 | Illumina NovaSeq 6000 | SRS20187718 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025453 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_97 (21PG55-3) | SAMN39503389 | 17/02/2025 | ||||||||||||||||
| 539 | SRX23311390 | SRP484717 | Illumina NovaSeq 6000 | SRS20187720 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025454 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_98 (21PG55-3) | SAMN39503388 | 17/02/2025 | ||||||||||||||||
| 540 | SRX23311391 | SRP484717 | Illumina NovaSeq 6000 | SRS20187717 | UBERON:0000358 | blastocyst | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025455 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_99 (21PG55-3) | SAMN39503387 | 17/02/2025 |
In [ ]:
infoStage = library['infoStage'].drop_duplicates().sort_values()
stage_df = pd.DataFrame(infoStage)
stage_df = stage_df.reindex(columns=[*stage_df.columns.tolist(), 'notes_stage', 'stageId_', 'stageName_', 'stageAnnotationStatus_', 'infoStage_new','comment_stage'], fill_value="")
stage_df.to_csv(info_stage_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
if not os.path.exists(info_stage_complete_path):
stage_df.to_csv(info_stage_complete_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
# options for stageAnnotationStatus: perfect match, missing child term, other
In [ ]:
stage_df_complete = pd.read_csv(info_stage_complete_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(stage_df_complete)
| infoStage | notes_stage | stageId_ | stageName_ | stageAnnotationStatus_ | infoStage_new | comment_stage | |
|---|---|---|---|---|---|---|---|
| 0 | 16 cell: E4 | UBERON:0000107 | cleavage stage | missing child term | |||
| 1 | 16 cell: E4.5 | UBERON:0000107 | cleavage stage | missing child term | |||
| 2 | 16-32 cell: E4.5 | UBERON:0000107 | cleavage stage | missing child term | |||
| 3 | 16-32 cell: E4.75 | UBERON:0000107 | cleavage stage | missing child term | |||
| 4 | 8 cell: E3.5 | UBERON:0007236 | 8 cell stage | perfect match | |||
| 5 | Early blastocyst: E4.5 | UBERON:0000108 | blastula stage | missing child term | |||
| 6 | Early blastocyst: E5 | UBERON:0000108 | blastula stage | missing child term | |||
| 7 | Early blastocyst: E5.25 | UBERON:0000108 | blastula stage | missing child term | |||
| 8 | Late blastocyst: E5.5 | UBERON:0000108 | blastula stage | missing child term | |||
| 9 | Late blastocyst: E5.75 | UBERON:0000108 | blastula stage | missing child term | |||
| 10 | Late blastocyst: E6 | UBERON:0000108 | blastula stage | missing child term | |||
| 11 | Middle blastocyst: E5.25 | UBERON:0000108 | blastula stage | missing child term | |||
| 12 | Middle blastocyst: E5.5 | UBERON:0000108 | blastula stage | missing child term | |||
| 13 | Middle blastocyst: E5.75 | UBERON:0000108 | blastula stage | missing child term |
In [ ]:
library = library.merge(stage_df_complete, left_on='infoStage', right_on='infoStage')
In [ ]:
library['stageId'] = library['stageId_'].values
library['stageName'] = library['stageName_'].values
library['stageAnnotationStatus'] = library['stageAnnotationStatus_'].values
In [ ]:
## optional - update infoOrgan, add anat-specific comments
#library['infoStage'] = library['infoStage_new'].values
#library['comment'] = library[['comment', 'comment_stage']].agg(' '.join, axis=1)
In [ ]:
# reformat, save progress
library = library[library_cols]
display_df(library)
library.to_csv(library_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRX23310999 | SRP484717 | Illumina NovaSeq 6000 | SRS20187327 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024795 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_1 (21PG50-2) | SAMN39504047 | 17/02/2025 | |||||||
| 1 | SRX23311255 | SRP484717 | Illumina NovaSeq 6000 | SRS20187583 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024796 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_10 (21PG39-1) | SAMN39504046 | 17/02/2025 | |||||||
| 2 | SRX23311256 | SRP484717 | Illumina NovaSeq 6000 | SRS20187584 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024797 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_100 (21PG55-2) | SAMN39504045 | 17/02/2025 | |||||||
| 3 | SRX23311257 | SRP484717 | Illumina NovaSeq 6000 | SRS20187585 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024798 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_101 (21PG55-2) | SAMN39504044 | 17/02/2025 | |||||||
| 4 | SRX23311258 | SRP484717 | Illumina NovaSeq 6000 | SRS20187586 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024799 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_102 (21PG55-2) | SAMN39504043 | 17/02/2025 | |||||||
| 5 | SRX23311259 | SRP484717 | Illumina NovaSeq 6000 | SRS20187590 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024800 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_103 (21PG55-2) | SAMN39504042 | 17/02/2025 | |||||||
| 6 | SRX23310825 | SRP484717 | Illumina NovaSeq 6000 | SRS20187153 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024801 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_104 (21PG55-2) | SAMN39504041 | 17/02/2025 | |||||||
| 7 | SRX23310826 | SRP484717 | Illumina NovaSeq 6000 | SRS20187154 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024802 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_105 (21PG55-2) | SAMN39504040 | 17/02/2025 | |||||||
| 8 | SRX23310827 | SRP484717 | Illumina NovaSeq 6000 | SRS20187157 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024803 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_106 (21PG55-2) | SAMN39504039 | 17/02/2025 | |||||||
| 9 | SRX23311000 | SRP484717 | Illumina NovaSeq 6000 | SRS20187330 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024804 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_107 (21PG55-2) | SAMN39504038 | 17/02/2025 | |||||||
| 10 | SRX23311001 | SRP484717 | Illumina NovaSeq 6000 | SRS20187329 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024805 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_108 (21PG55-2) | SAMN39504037 | 17/02/2025 | |||||||
| 11 | SRX23311002 | SRP484717 | Illumina NovaSeq 6000 | SRS20187328 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024806 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_109 (21PG34-1) | SAMN39504036 | 17/02/2025 | |||||||
| 12 | SRX23311003 | SRP484717 | Illumina NovaSeq 6000 | SRS20187331 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024807 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_11 (21PG39-1) | SAMN39504035 | 17/02/2025 | |||||||
| 13 | SRX23311004 | SRP484717 | Illumina NovaSeq 6000 | SRS20187333 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024808 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_110 (21PG34-1) | SAMN39504034 | 17/02/2025 | |||||||
| 14 | SRX23311006 | SRP484717 | Illumina NovaSeq 6000 | SRS20187334 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024810 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_112 (21PG34-1) | SAMN39504032 | 17/02/2025 | |||||||
| 15 | SRX23311007 | SRP484717 | Illumina NovaSeq 6000 | SRS20187335 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024811 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_113 (21PG37-2) | SAMN39504031 | 17/02/2025 | |||||||
| 16 | SRX23311392 | SRP484717 | Illumina NovaSeq 6000 | SRS20187719 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024812 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_114 (21PG37-2) | SAMN39504030 | 17/02/2025 | |||||||
| 17 | SRX23311393 | SRP484717 | Illumina NovaSeq 6000 | SRS20187721 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024813 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_115 (21PG37-2) | SAMN39504029 | 17/02/2025 | |||||||
| 18 | SRX23311394 | SRP484717 | Illumina NovaSeq 6000 | SRS20187722 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024814 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_116 (21PG37-2) | SAMN39504028 | 17/02/2025 | |||||||
| 19 | SRX23311395 | SRP484717 | Illumina NovaSeq 6000 | SRS20187724 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024815 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_117 (21PG37-2) | SAMN39504027 | 17/02/2025 | |||||||
| 20 | SRX23311397 | SRP484717 | Illumina NovaSeq 6000 | SRS20187725 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024817 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_119 (21PG37-2) | SAMN39504025 | 17/02/2025 | |||||||
| 21 | SRX23311398 | SRP484717 | Illumina NovaSeq 6000 | SRS20187726 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024818 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_12 (21PG39-1) | SAMN39504024 | 17/02/2025 | |||||||
| 22 | SRX23311399 | SRP484717 | Illumina NovaSeq 6000 | SRS20187727 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024819 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_120 (21PG37-2) | SAMN39504023 | 17/02/2025 | |||||||
| 23 | SRX23310828 | SRP484717 | Illumina NovaSeq 6000 | SRS20187156 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024820 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_121 (21PG37-2) | SAMN39504022 | 17/02/2025 | |||||||
| 24 | SRX23310829 | SRP484717 | Illumina NovaSeq 6000 | SRS20187158 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024821 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_122 (21PG37-2) | SAMN39504021 | 17/02/2025 | |||||||
| 25 | SRX23310831 | SRP484717 | Illumina NovaSeq 6000 | SRS20187159 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024823 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_124 (21PG37-3) | SAMN39504019 | 17/02/2025 | |||||||
| 26 | SRX23310832 | SRP484717 | Illumina NovaSeq 6000 | SRS20187160 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024824 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_125 (21PG37-3) | SAMN39504018 | 17/02/2025 | |||||||
| 27 | SRX23310833 | SRP484717 | Illumina NovaSeq 6000 | SRS20187161 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024825 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_126 (21PG37-3) | SAMN39504017 | 17/02/2025 | |||||||
| 28 | SRX23310834 | SRP484717 | Illumina NovaSeq 6000 | SRS20187163 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024826 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_127 (21PG37-3) | SAMN39504016 | 17/02/2025 | |||||||
| 29 | SRX23310835 | SRP484717 | Illumina NovaSeq 6000 | SRS20187162 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024827 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_128 (21PG37-3) | SAMN39504015 | 17/02/2025 | |||||||
| 30 | SRX23311008 | SRP484717 | Illumina NovaSeq 6000 | SRS20187336 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024828 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_129 (21PG37-3) | SAMN39504014 | 17/02/2025 | |||||||
| 31 | SRX23311009 | SRP484717 | Illumina NovaSeq 6000 | SRS20187337 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024829 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_13 (21PG39-1) | SAMN39504013 | 17/02/2025 | |||||||
| 32 | SRX23311010 | SRP484717 | Illumina NovaSeq 6000 | SRS20187338 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024830 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_130 (21PG37-3) | SAMN39504012 | 17/02/2025 | |||||||
| 33 | SRX23311011 | SRP484717 | Illumina NovaSeq 6000 | SRS20187339 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024831 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_131 (21PG37-3) | SAMN39504011 | 17/02/2025 | |||||||
| 34 | SRX23311012 | SRP484717 | Illumina NovaSeq 6000 | SRS20187340 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024832 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_132 (21PG37-3) | SAMN39504010 | 17/02/2025 | |||||||
| 35 | SRX23311013 | SRP484717 | Illumina NovaSeq 6000 | SRS20187341 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024833 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_133 (21PG37-3) | SAMN39504009 | 17/02/2025 | |||||||
| 36 | SRX23311014 | SRP484717 | Illumina NovaSeq 6000 | SRS20187342 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024834 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_134 (21PG37-3) | SAMN39504008 | 17/02/2025 | |||||||
| 37 | SRX23311015 | SRP484717 | Illumina NovaSeq 6000 | SRS20187343 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024835 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_135 (21PG37-3) | SAMN39504007 | 17/02/2025 | |||||||
| 38 | SRX23311400 | SRP484717 | Illumina NovaSeq 6000 | SRS20187728 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024836 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_136 (21PG37-3) | SAMN39504006 | 17/02/2025 | |||||||
| 39 | SRX23311402 | SRP484717 | Illumina NovaSeq 6000 | SRS20187730 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024838 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_138 (21PG37-3) | SAMN39504004 | 17/02/2025 | |||||||
| 40 | SRX23311404 | SRP484717 | Illumina NovaSeq 6000 | SRS20187731 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024840 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_14 (21PG39-1) | SAMN39504002 | 17/02/2025 | |||||||
| 41 | SRX23311405 | SRP484717 | Illumina NovaSeq 6000 | SRS20187733 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024841 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_140 (21PG37-3) | SAMN39504001 | 17/02/2025 | |||||||
| 42 | SRX23311406 | SRP484717 | Illumina NovaSeq 6000 | SRS20187732 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024842 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_141 (21PG37-3) | SAMN39504000 | 17/02/2025 | |||||||
| 43 | SRX23310985 | SRP484717 | Illumina NovaSeq 6000 | SRS20187311 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024851 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_15 (21PG39-1) | SAMN39503991 | 17/02/2025 | |||||||
| 44 | SRX23310837 | SRP484717 | Illumina NovaSeq 6000 | SRS20187165 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024853 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_151 (21PG55-2) | SAMN39503989 | 17/02/2025 | |||||||
| 45 | SRX23310840 | SRP484717 | Illumina NovaSeq 6000 | SRS20187168 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024856 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_154 (21PG53-1) | SAMN39503986 | 17/02/2025 | |||||||
| 46 | SRX23310842 | SRP484717 | Illumina NovaSeq 6000 | SRS20187170 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024858 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_156 (21PG55-2) | SAMN39503984 | 17/02/2025 | |||||||
| 47 | SRX23310843 | SRP484717 | Illumina NovaSeq 6000 | SRS20187171 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024859 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_157 (21PG53-1) | SAMN39503983 | 17/02/2025 | |||||||
| 48 | SRX23311016 | SRP484717 | Illumina NovaSeq 6000 | SRS20187344 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024860 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_158 (21PG53-1) | SAMN39503982 | 17/02/2025 | |||||||
| 49 | SRX23311017 | SRP484717 | Illumina NovaSeq 6000 | SRS20187345 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024861 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_159 (21PG53-1) | SAMN39503981 | 17/02/2025 | |||||||
| 50 | SRX23311018 | SRP484717 | Illumina NovaSeq 6000 | SRS20187346 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024862 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_16 (21PG39-1) | SAMN39503980 | 17/02/2025 | |||||||
| 51 | SRX23311019 | SRP484717 | Illumina NovaSeq 6000 | SRS20187347 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024863 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_160 (21PG53-1) | SAMN39503979 | 17/02/2025 | |||||||
| 52 | SRX23311020 | SRP484717 | Illumina NovaSeq 6000 | SRS20187348 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024864 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_161 (21PG53-1) | SAMN39503978 | 17/02/2025 | |||||||
| 53 | SRX23311021 | SRP484717 | Illumina NovaSeq 6000 | SRS20187350 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024865 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_162 (21PG53-1) | SAMN39503977 | 17/02/2025 | |||||||
| 54 | SRX23311022 | SRP484717 | Illumina NovaSeq 6000 | SRS20187352 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024866 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_163 (21PG53-1) | SAMN39503976 | 17/02/2025 | |||||||
| 55 | SRX23311023 | SRP484717 | Illumina NovaSeq 6000 | SRS20187351 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024867 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_164 (21PG53-1) | SAMN39503975 | 17/02/2025 | |||||||
| 56 | SRX23311408 | SRP484717 | Illumina NovaSeq 6000 | SRS20187736 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024868 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_165 (21PG53-1) | SAMN39503974 | 17/02/2025 | |||||||
| 57 | SRX23311409 | SRP484717 | Illumina NovaSeq 6000 | SRS20187738 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024869 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_166 (21PG53-1) | SAMN39503973 | 17/02/2025 | |||||||
| 58 | SRX23311410 | SRP484717 | Illumina NovaSeq 6000 | SRS20187737 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024870 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_167 (21PG53-1) | SAMN39503972 | 17/02/2025 | |||||||
| 59 | SRX23311411 | SRP484717 | Illumina NovaSeq 6000 | SRS20187741 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024871 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_168 (21PG53-1) | SAMN39503971 | 17/02/2025 | |||||||
| 60 | SRX23311412 | SRP484717 | Illumina NovaSeq 6000 | SRS20187742 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024872 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_169 (21PG53-1) | SAMN39503970 | 17/02/2025 | |||||||
| 61 | SRX23311413 | SRP484717 | Illumina NovaSeq 6000 | SRS20187740 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024873 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_17 (21PG39-2) | SAMN39503969 | 17/02/2025 | |||||||
| 62 | SRX23311414 | SRP484717 | Illumina NovaSeq 6000 | SRS20187739 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024874 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_170 (21PG53-1) | SAMN39503968 | 17/02/2025 | |||||||
| 63 | SRX23310987 | SRP484717 | Illumina NovaSeq 6000 | SRS20187315 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024877 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_173 (21PG77-2) | SAMN39503965 | 17/02/2025 | |||||||
| 64 | SRX23310988 | SRP484717 | Illumina NovaSeq 6000 | SRS20187316 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024878 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_174 (21PG77-2) | SAMN39503964 | 17/02/2025 | |||||||
| 65 | SRX23310990 | SRP484717 | Illumina NovaSeq 6000 | SRS20187318 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024880 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_176 (21PG77-2) | SAMN39503962 | 17/02/2025 | |||||||
| 66 | SRX23310991 | SRP484717 | Illumina NovaSeq 6000 | SRS20187319 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024881 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_177 (21PG77-2) | SAMN39503961 | 17/02/2025 | |||||||
| 67 | SRX23310992 | SRP484717 | Illumina NovaSeq 6000 | SRS20187321 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024882 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_178 (21PG77-2) | SAMN39503960 | 17/02/2025 | |||||||
| 68 | SRX23310993 | SRP484717 | Illumina NovaSeq 6000 | SRS20187320 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024883 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_179 (21PG77-2) | SAMN39503959 | 17/02/2025 | |||||||
| 69 | SRX23310844 | SRP484717 | Illumina NovaSeq 6000 | SRS20187173 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024884 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_18 (21PG40-1) | SAMN39503958 | 17/02/2025 | |||||||
| 70 | SRX23310845 | SRP484717 | Illumina NovaSeq 6000 | SRS20187172 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024885 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_180 (21PG77-2) | SAMN39503957 | 17/02/2025 | |||||||
| 71 | SRX23310846 | SRP484717 | Illumina NovaSeq 6000 | SRS20187175 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024886 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_181 (21PG77-2) | SAMN39503956 | 17/02/2025 | |||||||
| 72 | SRX23310847 | SRP484717 | Illumina NovaSeq 6000 | SRS20187174 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024887 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_182 (21PG77-2) | SAMN39503955 | 17/02/2025 | |||||||
| 73 | SRX23310848 | SRP484717 | Illumina NovaSeq 6000 | SRS20187176 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024888 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_183 (21PG77-2) | SAMN39503954 | 17/02/2025 | |||||||
| 74 | SRX23310849 | SRP484717 | Illumina NovaSeq 6000 | SRS20187178 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024889 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_184 (21PG77-2) | SAMN39503953 | 17/02/2025 | |||||||
| 75 | SRX23310850 | SRP484717 | Illumina NovaSeq 6000 | SRS20187177 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024890 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_185 (21PG77-2) | SAMN39503952 | 17/02/2025 | |||||||
| 76 | SRX23310851 | SRP484717 | Illumina NovaSeq 6000 | SRS20187179 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024891 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_186 (21PG50-1) | SAMN39503951 | 17/02/2025 | |||||||
| 77 | SRX23311024 | SRP484717 | Illumina NovaSeq 6000 | SRS20187349 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024892 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_187 (21PG50-1) | SAMN39503950 | 17/02/2025 | |||||||
| 78 | SRX23311025 | SRP484717 | Illumina NovaSeq 6000 | SRS20187354 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024893 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_188 (21PG50-1) | SAMN39503949 | 17/02/2025 | |||||||
| 79 | SRX23311027 | SRP484717 | Illumina NovaSeq 6000 | SRS20187353 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024895 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_19 (21PG40-1) | SAMN39503947 | 17/02/2025 | |||||||
| 80 | SRX23311029 | SRP484717 | Illumina NovaSeq 6000 | SRS20187356 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024897 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_191 (21PG50-1) | SAMN39503945 | 17/02/2025 | |||||||
| 81 | SRX23311030 | SRP484717 | Illumina NovaSeq 6000 | SRS20187359 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024898 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_192 (21PG50-1) | SAMN39503944 | 17/02/2025 | |||||||
| 82 | SRX23311031 | SRP484717 | Illumina NovaSeq 6000 | SRS20187360 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024899 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_193 (21PG57-1) | SAMN39503943 | 17/02/2025 | |||||||
| 83 | SRX23311417 | SRP484717 | Illumina NovaSeq 6000 | SRS20187747 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024901 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_195 (21PG57-1) | SAMN39503941 | 17/02/2025 | |||||||
| 84 | SRX23311418 | SRP484717 | Illumina NovaSeq 6000 | SRS20187745 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024902 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_196 (21PG57-1) | SAMN39503940 | 17/02/2025 | |||||||
| 85 | SRX23311419 | SRP484717 | Illumina NovaSeq 6000 | SRS20187746 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024903 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_198 (21PG57-1) | SAMN39503939 | 17/02/2025 | |||||||
| 86 | SRX23311420 | SRP484717 | Illumina NovaSeq 6000 | SRS20187749 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024904 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_2 (21PG50-2) | SAMN39503938 | 17/02/2025 | |||||||
| 87 | SRX23311421 | SRP484717 | Illumina NovaSeq 6000 | SRS20187748 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024905 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_20 (21PG40-1) | SAMN39503937 | 17/02/2025 | |||||||
| 88 | SRX23311422 | SRP484717 | Illumina NovaSeq 6000 | SRS20187750 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024906 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_200 (21PG57-1) | SAMN39503936 | 17/02/2025 | |||||||
| 89 | SRX23311423 | SRP484717 | Illumina NovaSeq 6000 | SRS20187753 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024907 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_201 (21PG57-1) | SAMN39503935 | 17/02/2025 | |||||||
| 90 | SRX23310994 | SRP484717 | Illumina NovaSeq 6000 | SRS20187322 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024908 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_202 (21PG57-1) | SAMN39503934 | 17/02/2025 | |||||||
| 91 | SRX23310995 | SRP484717 | Illumina NovaSeq 6000 | SRS20187323 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024909 | Late blastocyst: E5.5 | ICM: PE | Late blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_206 (21PG57-1) | SAMN39503933 | 17/02/2025 | |||||||
| 92 | SRX23310996 | SRP484717 | Illumina NovaSeq 6000 | SRS20187324 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024910 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_209 (21PG57-1) | SAMN39503932 | 17/02/2025 | |||||||
| 93 | SRX23310997 | SRP484717 | Illumina NovaSeq 6000 | SRS20187325 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024911 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_21 (21PG40-1) | SAMN39503931 | 17/02/2025 | |||||||
| 94 | SRX23310998 | SRP484717 | Illumina NovaSeq 6000 | SRS20187326 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024912 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_210 (21PG57-1) | SAMN39503930 | 17/02/2025 | |||||||
| 95 | SRX23311086 | SRP484717 | Illumina NovaSeq 6000 | SRS20187411 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024913 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_22 (21PG40-1) | SAMN39503929 | 17/02/2025 | |||||||
| 96 | SRX23311087 | SRP484717 | Illumina NovaSeq 6000 | SRS20187415 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024914 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_23 (21PG40-1) | SAMN39503928 | 17/02/2025 | |||||||
| 97 | SRX23311088 | SRP484717 | Illumina NovaSeq 6000 | SRS20187416 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024915 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_230 (21PG49-3) | SAMN39503927 | 17/02/2025 | |||||||
| 98 | SRX23310852 | SRP484717 | Illumina NovaSeq 6000 | SRS20187180 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024916 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_231 (21PG49-3) | SAMN39503926 | 17/02/2025 | |||||||
| 99 | SRX23310853 | SRP484717 | Illumina NovaSeq 6000 | SRS20187181 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024917 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_232 (21PG49-3) | SAMN39503925 | 17/02/2025 | |||||||
| 100 | SRX23310854 | SRP484717 | Illumina NovaSeq 6000 | SRS20187182 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024918 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_233 (21PG49-3) | SAMN39503924 | 17/02/2025 | |||||||
| 101 | SRX23310855 | SRP484717 | Illumina NovaSeq 6000 | SRS20187183 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024919 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_234 (21PG49-3) | SAMN39503923 | 17/02/2025 | |||||||
| 102 | SRX23310856 | SRP484717 | Illumina NovaSeq 6000 | SRS20187184 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024920 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_235 (21PG49-3) | SAMN39503922 | 17/02/2025 | |||||||
| 103 | SRX23310857 | SRP484717 | Illumina NovaSeq 6000 | SRS20187186 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024921 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_236 (21PG49-3) | SAMN39503921 | 17/02/2025 | |||||||
| 104 | SRX23310858 | SRP484717 | Illumina NovaSeq 6000 | SRS20187187 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024922 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_237 (21PG49-3) | SAMN39503920 | 17/02/2025 | |||||||
| 105 | SRX23310859 | SRP484717 | Illumina NovaSeq 6000 | SRS20187185 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024923 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_238 (21PG49-3) | SAMN39503919 | 17/02/2025 | |||||||
| 106 | SRX23311032 | SRP484717 | Illumina NovaSeq 6000 | SRS20187358 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024924 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_239 (21PG49-3) | SAMN39503918 | 17/02/2025 | |||||||
| 107 | SRX23311033 | SRP484717 | Illumina NovaSeq 6000 | SRS20187362 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024925 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_24 (21PG40-1) | SAMN39503917 | 17/02/2025 | |||||||
| 108 | SRX23311034 | SRP484717 | Illumina NovaSeq 6000 | SRS20187361 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024926 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_240 (21PG49-3) | SAMN39503916 | 17/02/2025 | |||||||
| 109 | SRX23311035 | SRP484717 | Illumina NovaSeq 6000 | SRS20187364 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024927 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_241 (21PG49-3) | SAMN39503915 | 17/02/2025 | |||||||
| 110 | SRX23311036 | SRP484717 | Illumina NovaSeq 6000 | SRS20187365 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024928 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_242 (21PG49-3) | SAMN39503914 | 17/02/2025 | |||||||
| 111 | SRX23311037 | SRP484717 | Illumina NovaSeq 6000 | SRS20187363 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024929 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_243 (21PG49-3) | SAMN39503913 | 17/02/2025 | |||||||
| 112 | SRX23311038 | SRP484717 | Illumina NovaSeq 6000 | SRS20187366 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024930 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_244 (21PG49-3) | SAMN39503912 | 17/02/2025 | |||||||
| 113 | SRX23311039 | SRP484717 | Illumina NovaSeq 6000 | SRS20187367 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024931 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_245 (21PG49-3) | SAMN39503911 | 17/02/2025 | |||||||
| 114 | SRX23311424 | SRP484717 | Illumina NovaSeq 6000 | SRS20187752 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024932 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_246 (21PG49-3) | SAMN39503910 | 17/02/2025 | |||||||
| 115 | SRX23311425 | SRP484717 | Illumina NovaSeq 6000 | SRS20187751 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024933 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_247 (21PG49-3) | SAMN39503909 | 17/02/2025 | |||||||
| 116 | SRX23311426 | SRP484717 | Illumina NovaSeq 6000 | SRS20187754 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024934 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_248 (21PG49-3) | SAMN39503908 | 17/02/2025 | |||||||
| 117 | SRX23311427 | SRP484717 | Illumina NovaSeq 6000 | SRS20187755 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024935 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_249 (21PG49-3) | SAMN39503907 | 17/02/2025 | |||||||
| 118 | SRX23311428 | SRP484717 | Illumina NovaSeq 6000 | SRS20187756 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024936 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_25 (21PG40-1) | SAMN39503906 | 17/02/2025 | |||||||
| 119 | SRX23311429 | SRP484717 | Illumina NovaSeq 6000 | SRS20187757 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024937 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_250 (21PG49-3) | SAMN39503905 | 17/02/2025 | |||||||
| 120 | SRX23311430 | SRP484717 | Illumina NovaSeq 6000 | SRS20187758 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024938 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_251 (21PG49-3) | SAMN39503904 | 17/02/2025 | |||||||
| 121 | SRX23311431 | SRP484717 | Illumina NovaSeq 6000 | SRS20187759 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024939 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_252 (21PG49-3) | SAMN39503903 | 17/02/2025 | |||||||
| 122 | SRX23311089 | SRP484717 | Illumina NovaSeq 6000 | SRS20187417 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024940 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_253 (21PG49-3) | SAMN39503902 | 17/02/2025 | |||||||
| 123 | SRX23311090 | SRP484717 | Illumina NovaSeq 6000 | SRS20187418 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024941 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_254 (21PG76-2) | SAMN39503901 | 17/02/2025 | |||||||
| 124 | SRX23311091 | SRP484717 | Illumina NovaSeq 6000 | SRS20187420 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024942 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_255 (21PG76-2) | SAMN39503900 | 17/02/2025 | |||||||
| 125 | SRX23311093 | SRP484717 | Illumina NovaSeq 6000 | SRS20187421 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024944 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_257 (20PG4-2) | SAMN39503898 | 17/02/2025 | |||||||
| 126 | SRX23311094 | SRP484717 | Illumina NovaSeq 6000 | SRS20187422 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024945 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_258 (20PG4-2) | SAMN39503897 | 17/02/2025 | |||||||
| 127 | SRX23311095 | SRP484717 | Illumina NovaSeq 6000 | SRS20187424 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024946 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_259 (20PG4-2) | SAMN39503896 | 17/02/2025 | |||||||
| 128 | SRX23311096 | SRP484717 | Illumina NovaSeq 6000 | SRS20187423 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024947 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_26 (21PG40-1) | SAMN39503895 | 17/02/2025 | |||||||
| 129 | SRX23310860 | SRP484717 | Illumina NovaSeq 6000 | SRS20187188 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024948 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_260 (20PG4-2) | SAMN39503894 | 17/02/2025 | |||||||
| 130 | SRX23310861 | SRP484717 | Illumina NovaSeq 6000 | SRS20187190 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024949 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_261 (20PG4-2) | SAMN39503893 | 17/02/2025 | |||||||
| 131 | SRX23310862 | SRP484717 | Illumina NovaSeq 6000 | SRS20187189 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024950 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_262 (20PG4-2) | SAMN39503892 | 17/02/2025 | |||||||
| 132 | SRX23310863 | SRP484717 | Illumina NovaSeq 6000 | SRS20187191 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024951 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_263 (20PG4-2) | SAMN39503891 | 17/02/2025 | |||||||
| 133 | SRX23310864 | SRP484717 | Illumina NovaSeq 6000 | SRS20187192 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024952 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_264 (20PG4-2) | SAMN39503890 | 17/02/2025 | |||||||
| 134 | SRX23310865 | SRP484717 | Illumina NovaSeq 6000 | SRS20187194 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024953 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_265 (20PG4-2) | SAMN39503889 | 17/02/2025 | |||||||
| 135 | SRX23310866 | SRP484717 | Illumina NovaSeq 6000 | SRS20187193 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024954 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_266 (20PG4-2) | SAMN39503888 | 17/02/2025 | |||||||
| 136 | SRX23310867 | SRP484717 | Illumina NovaSeq 6000 | SRS20187195 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024955 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_267 (20PG4-2) | SAMN39503887 | 17/02/2025 | |||||||
| 137 | SRX23311040 | SRP484717 | Illumina NovaSeq 6000 | SRS20187368 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024956 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_268 (20PG4-2) | SAMN39503886 | 17/02/2025 | |||||||
| 138 | SRX23311041 | SRP484717 | Illumina NovaSeq 6000 | SRS20187371 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024957 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_269 (20PG4-2) | SAMN39503885 | 17/02/2025 | |||||||
| 139 | SRX23311042 | SRP484717 | Illumina NovaSeq 6000 | SRS20187369 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024958 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_27 (21PG40-1) | SAMN39503884 | 17/02/2025 | |||||||
| 140 | SRX23311043 | SRP484717 | Illumina NovaSeq 6000 | SRS20187370 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024959 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_270 (20PG4-2) | SAMN39503883 | 17/02/2025 | |||||||
| 141 | SRX23311044 | SRP484717 | Illumina NovaSeq 6000 | SRS20187372 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024960 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_271 (20PG4-2) | SAMN39503882 | 17/02/2025 | |||||||
| 142 | SRX23311045 | SRP484717 | Illumina NovaSeq 6000 | SRS20187374 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024961 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_272 (20PG4-2) | SAMN39503881 | 17/02/2025 | |||||||
| 143 | SRX23311046 | SRP484717 | Illumina NovaSeq 6000 | SRS20187373 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024962 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_273 (20PG4-2) | SAMN39503880 | 17/02/2025 | |||||||
| 144 | SRX23311047 | SRP484717 | Illumina NovaSeq 6000 | SRS20187376 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024963 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_274 (20PG4-2) | SAMN39503879 | 17/02/2025 | |||||||
| 145 | SRX23311432 | SRP484717 | Illumina NovaSeq 6000 | SRS20187760 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024964 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_275 (20PG4-2) | SAMN39503878 | 17/02/2025 | |||||||
| 146 | SRX23311433 | SRP484717 | Illumina NovaSeq 6000 | SRS20187761 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024965 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_276 (20PG4-2) | SAMN39503877 | 17/02/2025 | |||||||
| 147 | SRX23311434 | SRP484717 | Illumina NovaSeq 6000 | SRS20187762 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024966 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_277 (20PG4-2) | SAMN39503876 | 17/02/2025 | |||||||
| 148 | SRX23311435 | SRP484717 | Illumina NovaSeq 6000 | SRS20187764 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024967 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_278 (20PG4-2) | SAMN39503875 | 17/02/2025 | |||||||
| 149 | SRX23311436 | SRP484717 | Illumina NovaSeq 6000 | SRS20187763 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024968 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_279 (20PG4-2) | SAMN39503874 | 17/02/2025 | |||||||
| 150 | SRX23311437 | SRP484717 | Illumina NovaSeq 6000 | SRS20187765 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024969 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_28 (21PG40-1) | SAMN39503873 | 17/02/2025 | |||||||
| 151 | SRX23311438 | SRP484717 | Illumina NovaSeq 6000 | SRS20187769 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024970 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_280 (20PG4-2) | SAMN39503872 | 17/02/2025 | |||||||
| 152 | SRX23311439 | SRP484717 | Illumina NovaSeq 6000 | SRS20187767 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024971 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_281 (20PG4-2) | SAMN39503871 | 17/02/2025 | |||||||
| 153 | SRX23311097 | SRP484717 | Illumina NovaSeq 6000 | SRS20187425 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024972 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_282 (20PG4-2) | SAMN39503870 | 17/02/2025 | |||||||
| 154 | SRX23311098 | SRP484717 | Illumina NovaSeq 6000 | SRS20187426 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024973 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_283 (20PG4-2) | SAMN39503869 | 17/02/2025 | |||||||
| 155 | SRX23311099 | SRP484717 | Illumina NovaSeq 6000 | SRS20187427 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024974 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_284 (20PG4-2) | SAMN39503868 | 17/02/2025 | |||||||
| 156 | SRX23311100 | SRP484717 | Illumina NovaSeq 6000 | SRS20187429 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024975 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_285 (20PG4-2) | SAMN39503867 | 17/02/2025 | |||||||
| 157 | SRX23311101 | SRP484717 | Illumina NovaSeq 6000 | SRS20187430 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024976 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_286 (20PG4-2) | SAMN39503866 | 17/02/2025 | |||||||
| 158 | SRX23311102 | SRP484717 | Illumina NovaSeq 6000 | SRS20187428 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024977 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_287 (20PG4-2) | SAMN39503865 | 17/02/2025 | |||||||
| 159 | SRX23311103 | SRP484717 | Illumina NovaSeq 6000 | SRS20187431 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024978 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_288 (21PG57-1) | SAMN39503864 | 17/02/2025 | |||||||
| 160 | SRX23310868 | SRP484717 | Illumina NovaSeq 6000 | SRS20187197 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024980 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_29 (21PG40-1) | SAMN39503862 | 17/02/2025 | |||||||
| 161 | SRX23310869 | SRP484717 | Illumina NovaSeq 6000 | SRS20187196 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024981 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_290 (20PG4-1) | SAMN39503861 | 17/02/2025 | |||||||
| 162 | SRX23310870 | SRP484717 | Illumina NovaSeq 6000 | SRS20187198 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024982 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_291 (20PG4-1) | SAMN39503860 | 17/02/2025 | |||||||
| 163 | SRX23310871 | SRP484717 | Illumina NovaSeq 6000 | SRS20187199 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024983 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_292 (20PG4-1) | SAMN39503859 | 17/02/2025 | |||||||
| 164 | SRX23310872 | SRP484717 | Illumina NovaSeq 6000 | SRS20187202 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024984 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_293 (20PG4-1) | SAMN39503858 | 17/02/2025 | |||||||
| 165 | SRX23310873 | SRP484717 | Illumina NovaSeq 6000 | SRS20187200 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024985 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_294 (20PG4-1) | SAMN39503857 | 17/02/2025 | |||||||
| 166 | SRX23310874 | SRP484717 | Illumina NovaSeq 6000 | SRS20187201 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024986 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_295 (20PG4-1) | SAMN39503856 | 17/02/2025 | |||||||
| 167 | SRX23310875 | SRP484717 | Illumina NovaSeq 6000 | SRS20187203 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024987 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_296 (20PG4-1) | SAMN39503855 | 17/02/2025 | |||||||
| 168 | SRX23311048 | SRP484717 | Illumina NovaSeq 6000 | SRS20187375 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024988 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_297 (20PG4-1) | SAMN39503854 | 17/02/2025 | |||||||
| 169 | SRX23311049 | SRP484717 | Illumina NovaSeq 6000 | SRS20187377 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024989 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_298 (20PG4-1) | SAMN39503853 | 17/02/2025 | |||||||
| 170 | SRX23311050 | SRP484717 | Illumina NovaSeq 6000 | SRS20187378 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024990 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_299 (20PG4-1) | SAMN39503852 | 17/02/2025 | |||||||
| 171 | SRX23311051 | SRP484717 | Illumina NovaSeq 6000 | SRS20187379 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024991 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_3 (21PG50-2) | SAMN39503851 | 17/02/2025 | |||||||
| 172 | SRX23311052 | SRP484717 | Illumina NovaSeq 6000 | SRS20187380 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024992 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_30 (21PG40-1) | SAMN39503850 | 17/02/2025 | |||||||
| 173 | SRX23311053 | SRP484717 | Illumina NovaSeq 6000 | SRS20187381 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024993 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_300 (20PG4-1) | SAMN39503849 | 17/02/2025 | |||||||
| 174 | SRX23311054 | SRP484717 | Illumina NovaSeq 6000 | SRS20187382 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024994 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_301 (20PG4-1) | SAMN39503848 | 17/02/2025 | |||||||
| 175 | SRX23311055 | SRP484717 | Illumina NovaSeq 6000 | SRS20187383 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024995 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_302 (20PG4-1) | SAMN39503847 | 17/02/2025 | |||||||
| 176 | SRX23311441 | SRP484717 | Illumina NovaSeq 6000 | SRS20187768 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024997 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_304 (20PG4-1) | SAMN39503845 | 17/02/2025 | |||||||
| 177 | SRX23311442 | SRP484717 | Illumina NovaSeq 6000 | SRS20187772 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024998 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_305 (20PG4-1) | SAMN39503844 | 17/02/2025 | |||||||
| 178 | SRX23311443 | SRP484717 | Illumina NovaSeq 6000 | SRS20187770 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024999 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_306 (20PG4-1) | SAMN39503843 | 17/02/2025 | |||||||
| 179 | SRX23311444 | SRP484717 | Illumina NovaSeq 6000 | SRS20187771 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025000 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_307 (20PG4-1) | SAMN39503842 | 17/02/2025 | |||||||
| 180 | SRX23311446 | SRP484717 | Illumina NovaSeq 6000 | SRS20187774 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025002 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_309 (20PG4-1) | SAMN39503840 | 17/02/2025 | |||||||
| 181 | SRX23311447 | SRP484717 | Illumina NovaSeq 6000 | SRS20187775 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025003 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_31 (21PG40-1) | SAMN39503839 | 17/02/2025 | |||||||
| 182 | SRX23311106 | SRP484717 | Illumina NovaSeq 6000 | SRS20187435 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025005 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_311 (20PG4-1) | SAMN39503837 | 17/02/2025 | |||||||
| 183 | SRX23311109 | SRP484717 | Illumina NovaSeq 6000 | SRS20187437 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025008 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_314 (21PG75-1) | SAMN39503834 | 17/02/2025 | |||||||
| 184 | SRX23311110 | SRP484717 | Illumina NovaSeq 6000 | SRS20187436 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025009 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_315 (21PG75-1) | SAMN39503833 | 17/02/2025 | |||||||
| 185 | SRX23311111 | SRP484717 | Illumina NovaSeq 6000 | SRS20187440 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025010 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_316 (21PG75-1) | SAMN39503832 | 17/02/2025 | |||||||
| 186 | SRX23310877 | SRP484717 | Illumina NovaSeq 6000 | SRS20187204 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025013 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_319 (21PG75-1) | SAMN39503829 | 17/02/2025 | |||||||
| 187 | SRX23310878 | SRP484717 | Illumina NovaSeq 6000 | SRS20187206 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025014 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_32 (21PG40-1) | SAMN39503828 | 17/02/2025 | |||||||
| 188 | SRX23310879 | SRP484717 | Illumina NovaSeq 6000 | SRS20187207 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025015 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_320 (21PG75-1) | SAMN39503827 | 17/02/2025 | |||||||
| 189 | SRX23310880 | SRP484717 | Illumina NovaSeq 6000 | SRS20187208 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025016 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_321 (21PG75-1) | SAMN39503826 | 17/02/2025 | |||||||
| 190 | SRX23310881 | SRP484717 | Illumina NovaSeq 6000 | SRS20187209 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025017 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_322 (21PG75-1) | SAMN39503825 | 17/02/2025 | |||||||
| 191 | SRX23310882 | SRP484717 | Illumina NovaSeq 6000 | SRS20187212 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025018 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_323 (21PG75-1) | SAMN39503824 | 17/02/2025 | |||||||
| 192 | SRX23310883 | SRP484717 | Illumina NovaSeq 6000 | SRS20187211 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025019 | Late blastocyst: E6 | TE: polar | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_324 (21PG75-1) | SAMN39503823 | 17/02/2025 | |||||||
| 193 | SRX23311056 | SRP484717 | Illumina NovaSeq 6000 | SRS20187384 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025020 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_325 (21PG75-1) | SAMN39503822 | 17/02/2025 | |||||||
| 194 | SRX23311057 | SRP484717 | Illumina NovaSeq 6000 | SRS20187386 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025021 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_326 (21PG75-1) | SAMN39503821 | 17/02/2025 | |||||||
| 195 | SRX23311059 | SRP484717 | Illumina NovaSeq 6000 | SRS20187385 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025023 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_328 (21PG75-1) | SAMN39503819 | 17/02/2025 | |||||||
| 196 | SRX23311060 | SRP484717 | Illumina NovaSeq 6000 | SRS20187389 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025024 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_329 (21PG75-1) | SAMN39503818 | 17/02/2025 | |||||||
| 197 | SRX23311061 | SRP484717 | Illumina NovaSeq 6000 | SRS20187390 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025025 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_33 (21PG40-1) | SAMN39503817 | 17/02/2025 | |||||||
| 198 | SRX23311062 | SRP484717 | Illumina NovaSeq 6000 | SRS20187388 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025026 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_330 (21PG75-1) | SAMN39503816 | 17/02/2025 | |||||||
| 199 | SRX23311063 | SRP484717 | Illumina NovaSeq 6000 | SRS20187391 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025027 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_331 (21PG75-1) | SAMN39503815 | 17/02/2025 | |||||||
| 200 | SRX23311448 | SRP484717 | Illumina NovaSeq 6000 | SRS20187776 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025028 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_332 (21PG75-1) | SAMN39503814 | 17/02/2025 | |||||||
| 201 | SRX23311449 | SRP484717 | Illumina NovaSeq 6000 | SRS20187777 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025029 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_333 (21PG75-1) | SAMN39503813 | 17/02/2025 | |||||||
| 202 | SRX23311450 | SRP484717 | Illumina NovaSeq 6000 | SRS20187778 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025030 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_334 (21PG75-1) | SAMN39503812 | 17/02/2025 | |||||||
| 203 | SRX23311451 | SRP484717 | Illumina NovaSeq 6000 | SRS20187780 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025031 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_335 (21PG52-2) | SAMN39503811 | 17/02/2025 | |||||||
| 204 | SRX23311452 | SRP484717 | Illumina NovaSeq 6000 | SRS20187779 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025032 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_336 (21PG52-2) | SAMN39503810 | 17/02/2025 | |||||||
| 205 | SRX23311453 | SRP484717 | Illumina NovaSeq 6000 | SRS20187781 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025033 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_337 (21PG52-2) | SAMN39503809 | 17/02/2025 | |||||||
| 206 | SRX23311454 | SRP484717 | Illumina NovaSeq 6000 | SRS20187782 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025034 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_338 (21PG52-2) | SAMN39503808 | 17/02/2025 | |||||||
| 207 | SRX23311113 | SRP484717 | Illumina NovaSeq 6000 | SRS20187442 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025036 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_34 (21PG40-1) | SAMN39503806 | 17/02/2025 | |||||||
| 208 | SRX23311114 | SRP484717 | Illumina NovaSeq 6000 | SRS20187441 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025037 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_340 (21PG52-2) | SAMN39503805 | 17/02/2025 | |||||||
| 209 | SRX23311115 | SRP484717 | Illumina NovaSeq 6000 | SRS20187443 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025038 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_341 (21PG52-2) | SAMN39503804 | 17/02/2025 | |||||||
| 210 | SRX23311116 | SRP484717 | Illumina NovaSeq 6000 | SRS20187444 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025039 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_342 (21PG52-2) | SAMN39503803 | 17/02/2025 | |||||||
| 211 | SRX23311117 | SRP484717 | Illumina NovaSeq 6000 | SRS20187446 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025040 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_343 (21PG52-2) | SAMN39503802 | 17/02/2025 | |||||||
| 212 | SRX23311118 | SRP484717 | Illumina NovaSeq 6000 | SRS20187445 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025041 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_344 (21PG52-2) | SAMN39503801 | 17/02/2025 | |||||||
| 213 | SRX23311119 | SRP484717 | Illumina NovaSeq 6000 | SRS20187447 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025042 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_345 (21PG52-2) | SAMN39503800 | 17/02/2025 | |||||||
| 214 | SRX23311120 | SRP484717 | Illumina NovaSeq 6000 | SRS20187448 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025043 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_346 (21PG52-2) | SAMN39503799 | 17/02/2025 | |||||||
| 215 | SRX23310884 | SRP484717 | Illumina NovaSeq 6000 | SRS20187210 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025044 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_347 (21PG52-2) | SAMN39503798 | 17/02/2025 | |||||||
| 216 | SRX23310885 | SRP484717 | Illumina NovaSeq 6000 | SRS20187213 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025045 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_348 (21PG52-2) | SAMN39503797 | 17/02/2025 | |||||||
| 217 | SRX23310886 | SRP484717 | Illumina NovaSeq 6000 | SRS20187215 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025046 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_349 (21PG52-2) | SAMN39503796 | 17/02/2025 | |||||||
| 218 | SRX23310887 | SRP484717 | Illumina NovaSeq 6000 | SRS20187214 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025047 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_35 (21PG40-1) | SAMN39503795 | 17/02/2025 | |||||||
| 219 | SRX23310889 | SRP484717 | Illumina NovaSeq 6000 | SRS20187217 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025049 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_351 (21PG52-2) | SAMN39503793 | 17/02/2025 | |||||||
| 220 | SRX23310890 | SRP484717 | Illumina NovaSeq 6000 | SRS20187218 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025050 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_352 (21PG52-2) | SAMN39503792 | 17/02/2025 | |||||||
| 221 | SRX23310891 | SRP484717 | Illumina NovaSeq 6000 | SRS20187219 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025051 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_353 (21PG41-1) | SAMN39503791 | 17/02/2025 | |||||||
| 222 | SRX23311064 | SRP484717 | Illumina NovaSeq 6000 | SRS20187392 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025052 | 16-32 cell: E4.75 | Prelineage: Morula | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_354 (21PG41-1) | SAMN39503790 | 17/02/2025 | |||||||
| 223 | SRX23311065 | SRP484717 | Illumina NovaSeq 6000 | SRS20187393 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025053 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_355 (21PG41-1) | SAMN39503789 | 17/02/2025 | |||||||
| 224 | SRX23311066 | SRP484717 | Illumina NovaSeq 6000 | SRS20187395 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025054 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_356 (21PG41-1) | SAMN39503788 | 17/02/2025 | |||||||
| 225 | SRX23311067 | SRP484717 | Illumina NovaSeq 6000 | SRS20187396 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025055 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_357 (21PG41-1) | SAMN39503787 | 17/02/2025 | |||||||
| 226 | SRX23311068 | SRP484717 | Illumina NovaSeq 6000 | SRS20187394 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025056 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_358 (21PG41-1) | SAMN39503786 | 17/02/2025 | |||||||
| 227 | SRX23311069 | SRP484717 | Illumina NovaSeq 6000 | SRS20187397 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025057 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_359 (21PG41-1) | SAMN39503785 | 17/02/2025 | |||||||
| 228 | SRX23311070 | SRP484717 | Illumina NovaSeq 6000 | SRS20187398 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025058 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_36 (21PG40-1) | SAMN39503784 | 17/02/2025 | |||||||
| 229 | SRX23311071 | SRP484717 | Illumina NovaSeq 6000 | SRS20187399 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025059 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_360 (21PG41-1) | SAMN39503783 | 17/02/2025 | |||||||
| 230 | SRX23311458 | SRP484717 | Illumina NovaSeq 6000 | SRS20187786 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025062 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_37 (21PG40-1) | SAMN39503780 | 17/02/2025 | |||||||
| 231 | SRX23311459 | SRP484717 | Illumina NovaSeq 6000 | SRS20187787 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025063 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_38 (21PG40-1) | SAMN39503779 | 17/02/2025 | |||||||
| 232 | SRX23311460 | SRP484717 | Illumina NovaSeq 6000 | SRS20187788 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025064 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_39 (21PG40-1) | SAMN39503778 | 17/02/2025 | |||||||
| 233 | SRX23311461 | SRP484717 | Illumina NovaSeq 6000 | SRS20187789 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025065 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_4 (21PG50-2) | SAMN39503777 | 17/02/2025 | |||||||
| 234 | SRX23311462 | SRP484717 | Illumina NovaSeq 6000 | SRS20187791 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025066 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_40 (21PG40-1) | SAMN39503776 | 17/02/2025 | |||||||
| 235 | SRX23311463 | SRP484717 | Illumina NovaSeq 6000 | SRS20187790 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025067 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_41 (21PG40-1) | SAMN39503775 | 17/02/2025 | |||||||
| 236 | SRX23311121 | SRP484717 | Illumina NovaSeq 6000 | SRS20187449 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025068 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_42 (21PG40-1) | SAMN39503774 | 17/02/2025 | |||||||
| 237 | SRX23311122 | SRP484717 | Illumina NovaSeq 6000 | SRS20187450 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025069 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_43 (21PG51-2) | SAMN39503773 | 17/02/2025 | |||||||
| 238 | SRX23311123 | SRP484717 | Illumina NovaSeq 6000 | SRS20187452 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025070 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_44 (21PG51-2) | SAMN39503772 | 17/02/2025 | |||||||
| 239 | SRX23311124 | SRP484717 | Illumina NovaSeq 6000 | SRS20187451 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025071 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_45 (21PG51-2) | SAMN39503771 | 17/02/2025 | |||||||
| 240 | SRX23311125 | SRP484717 | Illumina NovaSeq 6000 | SRS20187453 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025072 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_46 (21PG51-2) | SAMN39503770 | 17/02/2025 | |||||||
| 241 | SRX23311126 | SRP484717 | Illumina NovaSeq 6000 | SRS20187455 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025073 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_47 (21PG51-2) | SAMN39503769 | 17/02/2025 | |||||||
| 242 | SRX23311127 | SRP484717 | Illumina NovaSeq 6000 | SRS20187454 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025074 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_48 (21PG51-2) | SAMN39503768 | 17/02/2025 | |||||||
| 243 | SRX23311128 | SRP484717 | Illumina NovaSeq 6000 | SRS20187456 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025075 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_49 (21PG51-2) | SAMN39503767 | 17/02/2025 | |||||||
| 244 | SRX23310892 | SRP484717 | Illumina NovaSeq 6000 | SRS20187220 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025076 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_5 (21PG50-2) | SAMN39503766 | 17/02/2025 | |||||||
| 245 | SRX23310893 | SRP484717 | Illumina NovaSeq 6000 | SRS20187221 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025077 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_50 (21PG51-2) | SAMN39503765 | 17/02/2025 | |||||||
| 246 | SRX23310894 | SRP484717 | Illumina NovaSeq 6000 | SRS20187222 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025078 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_51 (21PG51-2) | SAMN39503764 | 17/02/2025 | |||||||
| 247 | SRX23310895 | SRP484717 | Illumina NovaSeq 6000 | SRS20187224 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025079 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_52 (21PG51-2) | SAMN39503763 | 17/02/2025 | |||||||
| 248 | SRX23310896 | SRP484717 | Illumina NovaSeq 6000 | SRS20187223 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025080 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_53 (21PG51-2) | SAMN39503762 | 17/02/2025 | |||||||
| 249 | SRX23310897 | SRP484717 | Illumina NovaSeq 6000 | SRS20187226 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025081 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_54 (21PG51-2) | SAMN39503761 | 17/02/2025 | |||||||
| 250 | SRX23310898 | SRP484717 | Illumina NovaSeq 6000 | SRS20187225 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025082 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_55 (21PG51-2) | SAMN39503760 | 17/02/2025 | |||||||
| 251 | SRX23310899 | SRP484717 | Illumina NovaSeq 6000 | SRS20187227 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025083 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_56 (21PG51-2) | SAMN39503759 | 17/02/2025 | |||||||
| 252 | SRX23311072 | SRP484717 | Illumina NovaSeq 6000 | SRS20187401 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025084 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_57 (21PG51-2) | SAMN39503758 | 17/02/2025 | |||||||
| 253 | SRX23311073 | SRP484717 | Illumina NovaSeq 6000 | SRS20187402 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025085 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_58 (21PG51-2) | SAMN39503757 | 17/02/2025 | |||||||
| 254 | SRX23311074 | SRP484717 | Illumina NovaSeq 6000 | SRS20187400 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025086 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_59 (21PG51-2) | SAMN39503756 | 17/02/2025 | |||||||
| 255 | SRX23311075 | SRP484717 | Illumina NovaSeq 6000 | SRS20187403 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025087 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_6 (21PG50-2) | SAMN39503755 | 17/02/2025 | |||||||
| 256 | SRX23311076 | SRP484717 | Illumina NovaSeq 6000 | SRS20187405 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025088 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_60 (21PG51-2) | SAMN39503754 | 17/02/2025 | |||||||
| 257 | SRX23311077 | SRP484717 | Illumina NovaSeq 6000 | SRS20187404 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025089 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_61 (21PG51-2) | SAMN39503753 | 17/02/2025 | |||||||
| 258 | SRX23311078 | SRP484717 | Illumina NovaSeq 6000 | SRS20187406 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025090 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_62 (21PG51-3) | SAMN39503752 | 17/02/2025 | |||||||
| 259 | SRX23311079 | SRP484717 | Illumina NovaSeq 6000 | SRS20187408 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025091 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_63 (21PG51-3) | SAMN39503751 | 17/02/2025 | |||||||
| 260 | SRX23311464 | SRP484717 | Illumina NovaSeq 6000 | SRS20187792 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025092 | Early blastocyst: E4.5 | ICM: PE | Early blastocyst: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_64 (21PG51-3) | SAMN39503750 | 17/02/2025 | |||||||
| 261 | SRX23311465 | SRP484717 | Illumina NovaSeq 6000 | SRS20187793 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025093 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_65 (21PG51-3) | SAMN39503749 | 17/02/2025 | |||||||
| 262 | SRX23311466 | SRP484717 | Illumina NovaSeq 6000 | SRS20187794 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025094 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_66 (21PG51-3) | SAMN39503748 | 17/02/2025 | |||||||
| 263 | SRX23311467 | SRP484717 | Illumina NovaSeq 6000 | SRS20187797 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025095 | Early blastocyst: E4.5 | ICM: ICM | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_67 (21PG51-3) | SAMN39503747 | 17/02/2025 | |||||||
| 264 | SRX23311468 | SRP484717 | Illumina NovaSeq 6000 | SRS20187795 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025096 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_68 (21PG51-3) | SAMN39503746 | 17/02/2025 | |||||||
| 265 | SRX23311469 | SRP484717 | Illumina NovaSeq 6000 | SRS20187796 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025097 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_69 (21PG51-3) | SAMN39503745 | 17/02/2025 | |||||||
| 266 | SRX23311470 | SRP484717 | Illumina NovaSeq 6000 | SRS20187798 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025098 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_7 (21PG50-2) | SAMN39503744 | 17/02/2025 | |||||||
| 267 | SRX23311471 | SRP484717 | Illumina NovaSeq 6000 | SRS20187799 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025099 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_70 (21PG51-3) | SAMN39503743 | 17/02/2025 | |||||||
| 268 | SRX23311129 | SRP484717 | Illumina NovaSeq 6000 | SRS20187457 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025100 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_71 (21PG51-3) | SAMN39503742 | 17/02/2025 | |||||||
| 269 | SRX23311130 | SRP484717 | Illumina NovaSeq 6000 | SRS20187458 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025101 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_72 (21PG51-3) | SAMN39503741 | 17/02/2025 | |||||||
| 270 | SRX23311131 | SRP484717 | Illumina NovaSeq 6000 | SRS20187459 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025102 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_73 (21PG51-3) | SAMN39503740 | 17/02/2025 | |||||||
| 271 | SRX23311132 | SRP484717 | Illumina NovaSeq 6000 | SRS20187461 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025103 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_74 (21PG76-1) | SAMN39503739 | 17/02/2025 | |||||||
| 272 | SRX23311133 | SRP484717 | Illumina NovaSeq 6000 | SRS20187460 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025104 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_75 (21PG76-1) | SAMN39503738 | 17/02/2025 | |||||||
| 273 | SRX23311134 | SRP484717 | Illumina NovaSeq 6000 | SRS20187462 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025105 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_76 (21PG76-1) | SAMN39503737 | 17/02/2025 | |||||||
| 274 | SRX23310901 | SRP484717 | Illumina NovaSeq 6000 | SRS20187229 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025109 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_8 (21PG50-2) | SAMN39503733 | 17/02/2025 | |||||||
| 275 | SRX23310902 | SRP484717 | Illumina NovaSeq 6000 | SRS20187230 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025110 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_80 (21PG76-2) | SAMN39503732 | 17/02/2025 | |||||||
| 276 | SRX23311082 | SRP484717 | Illumina NovaSeq 6000 | SRS20187410 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025118 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_88 (21PG76-2) | SAMN39503724 | 17/02/2025 | |||||||
| 277 | SRX23311083 | SRP484717 | Illumina NovaSeq 6000 | SRS20187412 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025119 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_89 (21PG76-2) | SAMN39503723 | 17/02/2025 | |||||||
| 278 | SRX23311084 | SRP484717 | Illumina NovaSeq 6000 | SRS20187413 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025120 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_9 (21PG39-1) | SAMN39503722 | 17/02/2025 | |||||||
| 279 | SRX23311085 | SRP484717 | Illumina NovaSeq 6000 | SRS20187414 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025121 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_90 (21PG76-2) | SAMN39503721 | 17/02/2025 | |||||||
| 280 | SRX23311472 | SRP484717 | Illumina NovaSeq 6000 | SRS20187800 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025124 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_93 (21PG76-2) | SAMN39503718 | 17/02/2025 | |||||||
| 281 | SRX23311473 | SRP484717 | Illumina NovaSeq 6000 | SRS20187803 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025125 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_94 (21PG76-2) | SAMN39503717 | 17/02/2025 | |||||||
| 282 | SRX23311475 | SRP484717 | Illumina NovaSeq 6000 | SRS20187804 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025127 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_96 (21PG76-2) | SAMN39503715 | 17/02/2025 | |||||||
| 283 | SRX23311476 | SRP484717 | Illumina NovaSeq 6000 | SRS20187802 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025128 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_97 (21PG55-2) | SAMN39503714 | 17/02/2025 | |||||||
| 284 | SRX23311477 | SRP484717 | Illumina NovaSeq 6000 | SRS20187805 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025129 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_98 (21PG55-2) | SAMN39503713 | 17/02/2025 | |||||||
| 285 | SRX23311478 | SRP484717 | Illumina NovaSeq 6000 | SRS20187806 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025130 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_99 (21PG55-2) | SAMN39503712 | 17/02/2025 | |||||||
| 286 | SRX23311479 | SRP484717 | Illumina NovaSeq 6000 | SRS20187808 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025131 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_1 (21PG50-3) | SAMN39503711 | 17/02/2025 | |||||||
| 287 | SRX23311137 | SRP484717 | Illumina NovaSeq 6000 | SRS20187463 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025132 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_10 (21PG77-1) | SAMN39503710 | 17/02/2025 | |||||||
| 288 | SRX23311138 | SRP484717 | Illumina NovaSeq 6000 | SRS20187466 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025133 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_100 (21PG55-3) | SAMN39503709 | 17/02/2025 | |||||||
| 289 | SRX23311139 | SRP484717 | Illumina NovaSeq 6000 | SRS20187467 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025134 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_101 (21PG55-3) | SAMN39503708 | 17/02/2025 | |||||||
| 290 | SRX23311140 | SRP484717 | Illumina NovaSeq 6000 | SRS20187469 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025135 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_102 (21PG55-3) | SAMN39503707 | 17/02/2025 | |||||||
| 291 | SRX23311141 | SRP484717 | Illumina NovaSeq 6000 | SRS20187470 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025136 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_103 (21PG55-3) | SAMN39503706 | 17/02/2025 | |||||||
| 292 | SRX23311142 | SRP484717 | Illumina NovaSeq 6000 | SRS20187468 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025137 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_104 (21PG55-3) | SAMN39503705 | 17/02/2025 | |||||||
| 293 | SRX23311143 | SRP484717 | Illumina NovaSeq 6000 | SRS20187472 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025138 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_105 (21PG55-3) | SAMN39503704 | 17/02/2025 | |||||||
| 294 | SRX23311144 | SRP484717 | Illumina NovaSeq 6000 | SRS20187471 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025139 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_106 (21PG55-3) | SAMN39503703 | 17/02/2025 | |||||||
| 295 | SRX23310908 | SRP484717 | Illumina NovaSeq 6000 | SRS20187237 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025140 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_107 (21PG55-3) | SAMN39503702 | 17/02/2025 | |||||||
| 296 | SRX23310909 | SRP484717 | Illumina NovaSeq 6000 | SRS20187236 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025141 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_108 (21PG55-3) | SAMN39503701 | 17/02/2025 | |||||||
| 297 | SRX23310910 | SRP484717 | Illumina NovaSeq 6000 | SRS20187238 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025142 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_109 (21PG55-3) | SAMN39503700 | 17/02/2025 | |||||||
| 298 | SRX23310911 | SRP484717 | Illumina NovaSeq 6000 | SRS20187239 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025143 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_11 (21PG77-1) | SAMN39503699 | 17/02/2025 | |||||||
| 299 | SRX23311312 | SRP484717 | Illumina NovaSeq 6000 | SRS20187640 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025144 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_110 (21PG55-3) | SAMN39503698 | 17/02/2025 | |||||||
| 300 | SRX23311313 | SRP484717 | Illumina NovaSeq 6000 | SRS20187641 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025145 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_111 (21PG55-3) | SAMN39503697 | 17/02/2025 | |||||||
| 301 | SRX23311314 | SRP484717 | Illumina NovaSeq 6000 | SRS20187643 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025146 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_112 (21PG55-3) | SAMN39503696 | 17/02/2025 | |||||||
| 302 | SRX23311175 | SRP484717 | Illumina NovaSeq 6000 | SRS20187504 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025148 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_114 (21PG55-3) | SAMN39503694 | 17/02/2025 | |||||||
| 303 | SRX23311176 | SRP484717 | Illumina NovaSeq 6000 | SRS20187503 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025149 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_115 (21PG55-3) | SAMN39503693 | 17/02/2025 | |||||||
| 304 | SRX23311177 | SRP484717 | Illumina NovaSeq 6000 | SRS20187505 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025150 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_116 (21PG49-1) | SAMN39503692 | 17/02/2025 | |||||||
| 305 | SRX23311178 | SRP484717 | Illumina NovaSeq 6000 | SRS20187506 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025151 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_117 (21PG49-1) | SAMN39503691 | 17/02/2025 | |||||||
| 306 | SRX23311179 | SRP484717 | Illumina NovaSeq 6000 | SRS20187507 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025152 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_118 (21PG49-1) | SAMN39503690 | 17/02/2025 | |||||||
| 307 | SRX23311180 | SRP484717 | Illumina NovaSeq 6000 | SRS20187508 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025153 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_119 (21PG49-1) | SAMN39503689 | 17/02/2025 | |||||||
| 308 | SRX23311181 | SRP484717 | Illumina NovaSeq 6000 | SRS20187509 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025154 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_12 (21PG77-1) | SAMN39503688 | 17/02/2025 | |||||||
| 309 | SRX23311182 | SRP484717 | Illumina NovaSeq 6000 | SRS20187510 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025155 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_120 (21PG49-1) | SAMN39503687 | 17/02/2025 | |||||||
| 310 | SRX23311480 | SRP484717 | Illumina NovaSeq 6000 | SRS20187807 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025156 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_121 (21PG49-1) | SAMN39503686 | 17/02/2025 | |||||||
| 311 | SRX23311481 | SRP484717 | Illumina NovaSeq 6000 | SRS20187809 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025157 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_122 (21PG49-1) | SAMN39503685 | 17/02/2025 | |||||||
| 312 | SRX23311483 | SRP484717 | Illumina NovaSeq 6000 | SRS20187811 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025159 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_124 (21PG49-1) | SAMN39503683 | 17/02/2025 | |||||||
| 313 | SRX23311484 | SRP484717 | Illumina NovaSeq 6000 | SRS20187812 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025160 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_125 (21PG49-1) | SAMN39503682 | 17/02/2025 | |||||||
| 314 | SRX23311485 | SRP484717 | Illumina NovaSeq 6000 | SRS20187813 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025161 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_126 (21PG49-1) | SAMN39503681 | 17/02/2025 | |||||||
| 315 | SRX23310912 | SRP484717 | Illumina NovaSeq 6000 | SRS20187240 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025162 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_127 (21PG49-1) | SAMN39503680 | 17/02/2025 | |||||||
| 316 | SRX23310913 | SRP484717 | Illumina NovaSeq 6000 | SRS20187241 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025163 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_128 (21PG49-1) | SAMN39503679 | 17/02/2025 | |||||||
| 317 | SRX23311146 | SRP484717 | Illumina NovaSeq 6000 | SRS20187474 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025165 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_13 (21PG77-1) | SAMN39503677 | 17/02/2025 | |||||||
| 318 | SRX23311148 | SRP484717 | Illumina NovaSeq 6000 | SRS20187475 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025167 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_131 (21PG49-2) | SAMN39503675 | 17/02/2025 | |||||||
| 319 | SRX23311149 | SRP484717 | Illumina NovaSeq 6000 | SRS20187480 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025168 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_132 (21PG49-2) | SAMN39503674 | 17/02/2025 | |||||||
| 320 | SRX23311150 | SRP484717 | Illumina NovaSeq 6000 | SRS20187479 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025169 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_133 (21PG49-2) | SAMN39503673 | 17/02/2025 | |||||||
| 321 | SRX23311151 | SRP484717 | Illumina NovaSeq 6000 | SRS20187477 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025170 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_134 (21PG49-2) | SAMN39503672 | 17/02/2025 | |||||||
| 322 | SRX23311152 | SRP484717 | Illumina NovaSeq 6000 | SRS20187478 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025171 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_135 (21PG49-2) | SAMN39503671 | 17/02/2025 | |||||||
| 323 | SRX23311316 | SRP484717 | Illumina NovaSeq 6000 | SRS20187642 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025172 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_136 (21PG49-2) | SAMN39503670 | 17/02/2025 | |||||||
| 324 | SRX23311317 | SRP484717 | Illumina NovaSeq 6000 | SRS20187645 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025173 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_137 (21PG49-2) | SAMN39503669 | 17/02/2025 | |||||||
| 325 | SRX23311318 | SRP484717 | Illumina NovaSeq 6000 | SRS20187646 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025174 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_138 (21PG49-2) | SAMN39503668 | 17/02/2025 | |||||||
| 326 | SRX23311319 | SRP484717 | Illumina NovaSeq 6000 | SRS20187648 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025175 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_139 (21PG49-2) | SAMN39503667 | 17/02/2025 | |||||||
| 327 | SRX23311320 | SRP484717 | Illumina NovaSeq 6000 | SRS20187647 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025176 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_14 (21PG77-1) | SAMN39503666 | 17/02/2025 | |||||||
| 328 | SRX23311321 | SRP484717 | Illumina NovaSeq 6000 | SRS20187649 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025177 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_140 (21PG49-2) | SAMN39503665 | 17/02/2025 | |||||||
| 329 | SRX23311322 | SRP484717 | Illumina NovaSeq 6000 | SRS20187650 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025178 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_141 (21PG53-2) | SAMN39503664 | 17/02/2025 | |||||||
| 330 | SRX23311323 | SRP484717 | Illumina NovaSeq 6000 | SRS20187652 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025179 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_142 (21PG53-2) | SAMN39503663 | 17/02/2025 | |||||||
| 331 | SRX23311183 | SRP484717 | Illumina NovaSeq 6000 | SRS20187511 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025180 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_143 (21PG53-2) | SAMN39503662 | 17/02/2025 | |||||||
| 332 | SRX23311184 | SRP484717 | Illumina NovaSeq 6000 | SRS20187512 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025181 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_144 (21PG53-2) | SAMN39503661 | 17/02/2025 | |||||||
| 333 | SRX23311185 | SRP484717 | Illumina NovaSeq 6000 | SRS20187514 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025182 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_145 (21PG53-2) | SAMN39503660 | 17/02/2025 | |||||||
| 334 | SRX23311186 | SRP484717 | Illumina NovaSeq 6000 | SRS20187513 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025183 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_146 (21PG53-2) | SAMN39503659 | 17/02/2025 | |||||||
| 335 | SRX23311187 | SRP484717 | Illumina NovaSeq 6000 | SRS20187518 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025184 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_147 (21PG53-2) | SAMN39503658 | 17/02/2025 | |||||||
| 336 | SRX23311188 | SRP484717 | Illumina NovaSeq 6000 | SRS20187515 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025185 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_148 (21PG53-2) | SAMN39503657 | 17/02/2025 | |||||||
| 337 | SRX23311189 | SRP484717 | Illumina NovaSeq 6000 | SRS20187516 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025186 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_149 (21PG53-2) | SAMN39503656 | 17/02/2025 | |||||||
| 338 | SRX23311190 | SRP484717 | Illumina NovaSeq 6000 | SRS20187519 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025187 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_15 (21PG77-1) | SAMN39503655 | 17/02/2025 | |||||||
| 339 | SRX23310914 | SRP484717 | Illumina NovaSeq 6000 | SRS20187242 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025188 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_150 (21PG53-2) | SAMN39503654 | 17/02/2025 | |||||||
| 340 | SRX23310915 | SRP484717 | Illumina NovaSeq 6000 | SRS20187243 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025189 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_151 (21PG53-2) | SAMN39503653 | 17/02/2025 | |||||||
| 341 | SRX23310916 | SRP484717 | Illumina NovaSeq 6000 | SRS20187244 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025190 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_152 (21PG53-2) | SAMN39503652 | 17/02/2025 | |||||||
| 342 | SRX23310917 | SRP484717 | Illumina NovaSeq 6000 | SRS20187245 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025191 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_153 (21PG53-2) | SAMN39503651 | 17/02/2025 | |||||||
| 343 | SRX23310918 | SRP484717 | Illumina NovaSeq 6000 | SRS20187246 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025192 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_154 (21PG53-2) | SAMN39503650 | 17/02/2025 | |||||||
| 344 | SRX23310919 | SRP484717 | Illumina NovaSeq 6000 | SRS20187247 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025193 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_155 (21PG53-2) | SAMN39503649 | 17/02/2025 | |||||||
| 345 | SRX23310920 | SRP484717 | Illumina NovaSeq 6000 | SRS20187248 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025194 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_156 (21PG53-2) | SAMN39503648 | 17/02/2025 | |||||||
| 346 | SRX23310921 | SRP484717 | Illumina NovaSeq 6000 | SRS20187249 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025195 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_157 (21PG53-2) | SAMN39503647 | 17/02/2025 | |||||||
| 347 | SRX23311153 | SRP484717 | Illumina NovaSeq 6000 | SRS20187481 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025196 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_158 (21PG53-2) | SAMN39503646 | 17/02/2025 | |||||||
| 348 | SRX23311154 | SRP484717 | Illumina NovaSeq 6000 | SRS20187482 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025197 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_159 (21PG53-2) | SAMN39503645 | 17/02/2025 | |||||||
| 349 | SRX23311155 | SRP484717 | Illumina NovaSeq 6000 | SRS20187483 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025198 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_16 (21PG77-1) | SAMN39503644 | 17/02/2025 | |||||||
| 350 | SRX23311156 | SRP484717 | Illumina NovaSeq 6000 | SRS20187484 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025199 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_160 (21PG53-2) | SAMN39503643 | 17/02/2025 | |||||||
| 351 | SRX23311157 | SRP484717 | Illumina NovaSeq 6000 | SRS20187485 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025200 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_161 (21PG53-2) | SAMN39503642 | 17/02/2025 | |||||||
| 352 | SRX23311158 | SRP484717 | Illumina NovaSeq 6000 | SRS20187486 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025201 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_162 (21PG53-2) | SAMN39503641 | 17/02/2025 | |||||||
| 353 | SRX23311159 | SRP484717 | Illumina NovaSeq 6000 | SRS20187487 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025202 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_163 (21PG53-2) | SAMN39503640 | 17/02/2025 | |||||||
| 354 | SRX23311160 | SRP484717 | Illumina NovaSeq 6000 | SRS20187488 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025203 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_164 (21PG53-2) | SAMN39503639 | 17/02/2025 | |||||||
| 355 | SRX23311324 | SRP484717 | Illumina NovaSeq 6000 | SRS20187651 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025204 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_165 (21PG53-2) | SAMN39503638 | 17/02/2025 | |||||||
| 356 | SRX23311325 | SRP484717 | Illumina NovaSeq 6000 | SRS20187653 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025205 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_166 (21PG53-2) | SAMN39503637 | 17/02/2025 | |||||||
| 357 | SRX23311326 | SRP484717 | Illumina NovaSeq 6000 | SRS20187655 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025206 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_167 (21PG53-2) | SAMN39503636 | 17/02/2025 | |||||||
| 358 | SRX23311327 | SRP484717 | Illumina NovaSeq 6000 | SRS20187654 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025207 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_168 (21PG32-2) | SAMN39503635 | 17/02/2025 | |||||||
| 359 | SRX23311328 | SRP484717 | Illumina NovaSeq 6000 | SRS20187661 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025208 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_169 (21PG32-2) | SAMN39503634 | 17/02/2025 | |||||||
| 360 | SRX23311329 | SRP484717 | Illumina NovaSeq 6000 | SRS20187662 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025209 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_17 (21PG77-1) | SAMN39503633 | 17/02/2025 | |||||||
| 361 | SRX23311330 | SRP484717 | Illumina NovaSeq 6000 | SRS20187656 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025210 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_170 (21PG32-2) | SAMN39503632 | 17/02/2025 | |||||||
| 362 | SRX23311331 | SRP484717 | Illumina NovaSeq 6000 | SRS20187659 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025211 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_171 (21PG32-2) | SAMN39503631 | 17/02/2025 | |||||||
| 363 | SRX23311191 | SRP484717 | Illumina NovaSeq 6000 | SRS20187517 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025212 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_172 (21PG32-2) | SAMN39503630 | 17/02/2025 | |||||||
| 364 | SRX23311192 | SRP484717 | Illumina NovaSeq 6000 | SRS20187520 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025213 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_173 (21PG32-2) | SAMN39503629 | 17/02/2025 | |||||||
| 365 | SRX23311193 | SRP484717 | Illumina NovaSeq 6000 | SRS20187521 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025214 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_174 (21PG32-2) | SAMN39503628 | 17/02/2025 | |||||||
| 366 | SRX23311194 | SRP484717 | Illumina NovaSeq 6000 | SRS20187522 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025215 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_175 (21PG32-2) | SAMN39503627 | 17/02/2025 | |||||||
| 367 | SRX23311195 | SRP484717 | Illumina NovaSeq 6000 | SRS20187525 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025216 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_176 (21PG32-2) | SAMN39503626 | 17/02/2025 | |||||||
| 368 | SRX23311196 | SRP484717 | Illumina NovaSeq 6000 | SRS20187524 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025217 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_177 (21PG32-2) | SAMN39503625 | 17/02/2025 | |||||||
| 369 | SRX23311197 | SRP484717 | Illumina NovaSeq 6000 | SRS20187523 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025218 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_178 (21PG32-2) | SAMN39503624 | 17/02/2025 | |||||||
| 370 | SRX23311198 | SRP484717 | Illumina NovaSeq 6000 | SRS20187527 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025219 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_179 (21PG32-2) | SAMN39503623 | 17/02/2025 | |||||||
| 371 | SRX23310922 | SRP484717 | Illumina NovaSeq 6000 | SRS20187250 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025220 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_18 (21PG77-1) | SAMN39503622 | 17/02/2025 | |||||||
| 372 | SRX23310923 | SRP484717 | Illumina NovaSeq 6000 | SRS20187252 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025221 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_180 (21PG32-2) | SAMN39503621 | 17/02/2025 | |||||||
| 373 | SRX23310924 | SRP484717 | Illumina NovaSeq 6000 | SRS20187253 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025222 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_19 (21PG77-1) | SAMN39503620 | 17/02/2025 | |||||||
| 374 | SRX23310925 | SRP484717 | Illumina NovaSeq 6000 | SRS20187251 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025223 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_191 (21PG49-1) | SAMN39503619 | 17/02/2025 | |||||||
| 375 | SRX23310926 | SRP484717 | Illumina NovaSeq 6000 | SRS20187254 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025224 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_192 (21PG49-1) | SAMN39503618 | 17/02/2025 | |||||||
| 376 | SRX23310927 | SRP484717 | Illumina NovaSeq 6000 | SRS20187255 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025225 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_193 (21PG57-2) | SAMN39503617 | 17/02/2025 | |||||||
| 377 | SRX23310928 | SRP484717 | Illumina NovaSeq 6000 | SRS20187256 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025226 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_194 (21PG57-2) | SAMN39503616 | 17/02/2025 | |||||||
| 378 | SRX23310929 | SRP484717 | Illumina NovaSeq 6000 | SRS20187258 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025227 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_195 (21PG57-2) | SAMN39503615 | 17/02/2025 | |||||||
| 379 | SRX23311161 | SRP484717 | Illumina NovaSeq 6000 | SRS20187490 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025228 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_196 (21PG57-2) | SAMN39503614 | 17/02/2025 | |||||||
| 380 | SRX23311163 | SRP484717 | Illumina NovaSeq 6000 | SRS20187492 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025230 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_198 (21PG57-2) | SAMN39503612 | 17/02/2025 | |||||||
| 381 | SRX23311164 | SRP484717 | Illumina NovaSeq 6000 | SRS20187494 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025231 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_199 (21PG57-2) | SAMN39503611 | 17/02/2025 | |||||||
| 382 | SRX23311165 | SRP484717 | Illumina NovaSeq 6000 | SRS20187493 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025232 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_2 (21PG50-3) | SAMN39503610 | 17/02/2025 | |||||||
| 383 | SRX23311166 | SRP484717 | Illumina NovaSeq 6000 | SRS20187491 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025233 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_20 (21PG77-1) | SAMN39503609 | 17/02/2025 | |||||||
| 384 | SRX23311167 | SRP484717 | Illumina NovaSeq 6000 | SRS20187495 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025234 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_200 (21PG57-2) | SAMN39503608 | 17/02/2025 | |||||||
| 385 | SRX23311332 | SRP484717 | Illumina NovaSeq 6000 | SRS20187657 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025236 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_202 (21PG57-2) | SAMN39503606 | 17/02/2025 | |||||||
| 386 | SRX23311333 | SRP484717 | Illumina NovaSeq 6000 | SRS20187658 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025237 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_203 (21PG57-2) | SAMN39503605 | 17/02/2025 | |||||||
| 387 | SRX23311335 | SRP484717 | Illumina NovaSeq 6000 | SRS20187663 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025239 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_205 (21PG57-2) | SAMN39503603 | 17/02/2025 | |||||||
| 388 | SRX23311336 | SRP484717 | Illumina NovaSeq 6000 | SRS20187664 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025240 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_206 (21PG57-2) | SAMN39503602 | 17/02/2025 | |||||||
| 389 | SRX23311337 | SRP484717 | Illumina NovaSeq 6000 | SRS20187665 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025241 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_207 (21PG57-2) | SAMN39503601 | 17/02/2025 | |||||||
| 390 | SRX23311338 | SRP484717 | Illumina NovaSeq 6000 | SRS20187666 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025242 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_208 (21PG57-2) | SAMN39503600 | 17/02/2025 | |||||||
| 391 | SRX23311339 | SRP484717 | Illumina NovaSeq 6000 | SRS20187667 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025243 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_209 (21PG75-4) | SAMN39503599 | 17/02/2025 | |||||||
| 392 | SRX23311199 | SRP484717 | Illumina NovaSeq 6000 | SRS20187526 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025244 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_21 (21PG77-1) | SAMN39503598 | 17/02/2025 | |||||||
| 393 | SRX23311200 | SRP484717 | Illumina NovaSeq 6000 | SRS20187528 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025245 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_210 (21PG75-4) | SAMN39503597 | 17/02/2025 | |||||||
| 394 | SRX23311201 | SRP484717 | Illumina NovaSeq 6000 | SRS20187530 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025246 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_211 (21PG75-4) | SAMN39503596 | 17/02/2025 | |||||||
| 395 | SRX23311202 | SRP484717 | Illumina NovaSeq 6000 | SRS20187532 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025247 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_212 (21PG75-4) | SAMN39503595 | 17/02/2025 | |||||||
| 396 | SRX23311203 | SRP484717 | Illumina NovaSeq 6000 | SRS20187531 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025248 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_213 (21PG75-4) | SAMN39503594 | 17/02/2025 | |||||||
| 397 | SRX23311204 | SRP484717 | Illumina NovaSeq 6000 | SRS20187529 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025249 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_214 (21PG75-4) | SAMN39503593 | 17/02/2025 | |||||||
| 398 | SRX23311205 | SRP484717 | Illumina NovaSeq 6000 | SRS20187534 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025250 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_215 (21PG75-4) | SAMN39503592 | 17/02/2025 | |||||||
| 399 | SRX23311206 | SRP484717 | Illumina NovaSeq 6000 | SRS20187533 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025251 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_216 (21PG75-4) | SAMN39503591 | 17/02/2025 | |||||||
| 400 | SRX23311169 | SRP484717 | Illumina NovaSeq 6000 | SRS20187497 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025252 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_217 (21PG75-4) | SAMN39503590 | 17/02/2025 | |||||||
| 401 | SRX23311170 | SRP484717 | Illumina NovaSeq 6000 | SRS20187498 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025253 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_218 (21PG75-4) | SAMN39503589 | 17/02/2025 | |||||||
| 402 | SRX23311171 | SRP484717 | Illumina NovaSeq 6000 | SRS20187500 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025254 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_219 (21PG75-4) | SAMN39503588 | 17/02/2025 | |||||||
| 403 | SRX23311172 | SRP484717 | Illumina NovaSeq 6000 | SRS20187499 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025255 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_22 (21PG77-1) | SAMN39503587 | 17/02/2025 | |||||||
| 404 | SRX23311260 | SRP484717 | Illumina NovaSeq 6000 | SRS20187592 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025256 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_220 (21PG75-4) | SAMN39503586 | 17/02/2025 | |||||||
| 405 | SRX23311261 | SRP484717 | Illumina NovaSeq 6000 | SRS20187587 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025257 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_221 (21PG75-4) | SAMN39503585 | 17/02/2025 | |||||||
| 406 | SRX23311262 | SRP484717 | Illumina NovaSeq 6000 | SRS20187588 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025258 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_222 (21PG75-4) | SAMN39503584 | 17/02/2025 | |||||||
| 407 | SRX23311263 | SRP484717 | Illumina NovaSeq 6000 | SRS20187598 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025259 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_223 (21PG75-4) | SAMN39503583 | 17/02/2025 | |||||||
| 408 | SRX23311341 | SRP484717 | Illumina NovaSeq 6000 | SRS20187670 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025261 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_225 (21PG75-4) | SAMN39503581 | 17/02/2025 | |||||||
| 409 | SRX23311342 | SRP484717 | Illumina NovaSeq 6000 | SRS20187669 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025262 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_226 (21PG75-4) | SAMN39503580 | 17/02/2025 | |||||||
| 410 | SRX23311343 | SRP484717 | Illumina NovaSeq 6000 | SRS20187671 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025263 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_227 (21PG75-4) | SAMN39503579 | 17/02/2025 | |||||||
| 411 | SRX23311345 | SRP484717 | Illumina NovaSeq 6000 | SRS20187673 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025265 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_23 (21PG77-1) | SAMN39503577 | 17/02/2025 | |||||||
| 412 | SRX23311346 | SRP484717 | Illumina NovaSeq 6000 | SRS20187675 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025266 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_24 (21PG77-1) | SAMN39503576 | 17/02/2025 | |||||||
| 413 | SRX23311347 | SRP484717 | Illumina NovaSeq 6000 | SRS20187676 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025267 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_25 (21PG40-2) | SAMN39503575 | 17/02/2025 | |||||||
| 414 | SRX23311207 | SRP484717 | Illumina NovaSeq 6000 | SRS20187538 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025268 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_26 (21PG40-2) | SAMN39503574 | 17/02/2025 | |||||||
| 415 | SRX23311211 | SRP484717 | Illumina NovaSeq 6000 | SRS20187536 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025272 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_269 (21PG76-2) | SAMN39503570 | 17/02/2025 | |||||||
| 416 | SRX23311212 | SRP484717 | Illumina NovaSeq 6000 | SRS20187540 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025273 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_27 (21PG40-2) | SAMN39503569 | 17/02/2025 | |||||||
| 417 | SRX23311213 | SRP484717 | Illumina NovaSeq 6000 | SRS20187541 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025274 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_270 (21PG76-2) | SAMN39503568 | 17/02/2025 | |||||||
| 418 | SRX23311214 | SRP484717 | Illumina NovaSeq 6000 | SRS20187544 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025275 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_271 (21PG76-2) | SAMN39503567 | 17/02/2025 | |||||||
| 419 | SRX23310935 | SRP484717 | Illumina NovaSeq 6000 | SRS20187263 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025281 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_277 (21PG76-2) | SAMN39503561 | 17/02/2025 | |||||||
| 420 | SRX23311264 | SRP484717 | Illumina NovaSeq 6000 | SRS20187589 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025284 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_28 (21PG40-2) | SAMN39503558 | 17/02/2025 | |||||||
| 421 | SRX23311266 | SRP484717 | Illumina NovaSeq 6000 | SRS20187594 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025286 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_281 (21PG45-2) | SAMN39503556 | 17/02/2025 | |||||||
| 422 | SRX23311348 | SRP484717 | Illumina NovaSeq 6000 | SRS20187674 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025292 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_287 (21PG45-2) | SAMN39503550 | 17/02/2025 | |||||||
| 423 | SRX23311350 | SRP484717 | Illumina NovaSeq 6000 | SRS20187677 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025294 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_289 (21PG35-1) | SAMN39503548 | 17/02/2025 | |||||||
| 424 | SRX23311351 | SRP484717 | Illumina NovaSeq 6000 | SRS20187678 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025295 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_29 (21PG40-2) | SAMN39503547 | 17/02/2025 | |||||||
| 425 | SRX23311352 | SRP484717 | Illumina NovaSeq 6000 | SRS20187680 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025296 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_290 (21PG35-1) | SAMN39503546 | 17/02/2025 | |||||||
| 426 | SRX23311353 | SRP484717 | Illumina NovaSeq 6000 | SRS20187681 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025297 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_291 (21PG35-1) | SAMN39503545 | 17/02/2025 | |||||||
| 427 | SRX23311216 | SRP484717 | Illumina NovaSeq 6000 | SRS20187542 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025301 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_295 (21PG35-1) | SAMN39503541 | 17/02/2025 | |||||||
| 428 | SRX23311217 | SRP484717 | Illumina NovaSeq 6000 | SRS20187543 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025302 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_296 (21PG65-1) | SAMN39503540 | 17/02/2025 | |||||||
| 429 | SRX23311218 | SRP484717 | Illumina NovaSeq 6000 | SRS20187546 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025303 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_297 (21PG65-1) | SAMN39503539 | 17/02/2025 | |||||||
| 430 | SRX23311219 | SRP484717 | Illumina NovaSeq 6000 | SRS20187547 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025304 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_298 (21PG65-1) | SAMN39503538 | 17/02/2025 | |||||||
| 431 | SRX23311220 | SRP484717 | Illumina NovaSeq 6000 | SRS20187548 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025305 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_299 (21PG65-1) | SAMN39503537 | 17/02/2025 | |||||||
| 432 | SRX23311221 | SRP484717 | Illumina NovaSeq 6000 | SRS20187549 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025306 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_3 (21PG50-3) | SAMN39503536 | 17/02/2025 | |||||||
| 433 | SRX23311222 | SRP484717 | Illumina NovaSeq 6000 | SRS20187551 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025307 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_30 (21PG40-2) | SAMN39503535 | 17/02/2025 | |||||||
| 434 | SRX23310938 | SRP484717 | Illumina NovaSeq 6000 | SRS20187265 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025308 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_300 (21PG65-1) | SAMN39503534 | 17/02/2025 | |||||||
| 435 | SRX23310939 | SRP484717 | Illumina NovaSeq 6000 | SRS20187267 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025309 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_301 (21PG65-1) | SAMN39503533 | 17/02/2025 | |||||||
| 436 | SRX23310940 | SRP484717 | Illumina NovaSeq 6000 | SRS20187269 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025310 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_302 (21PG65-1) | SAMN39503532 | 17/02/2025 | |||||||
| 437 | SRX23310941 | SRP484717 | Illumina NovaSeq 6000 | SRS20187268 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025311 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_303 (21PG65-1) | SAMN39503531 | 17/02/2025 | |||||||
| 438 | SRX23310942 | SRP484717 | Illumina NovaSeq 6000 | SRS20187270 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025312 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_304 (21PG65-1) | SAMN39503530 | 17/02/2025 | |||||||
| 439 | SRX23310943 | SRP484717 | Illumina NovaSeq 6000 | SRS20187271 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025313 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_305 (21PG65-1) | SAMN39503529 | 17/02/2025 | |||||||
| 440 | SRX23310944 | SRP484717 | Illumina NovaSeq 6000 | SRS20187272 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025314 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_306 (21PG65-1) | SAMN39503528 | 17/02/2025 | |||||||
| 441 | SRX23310945 | SRP484717 | Illumina NovaSeq 6000 | SRS20187273 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025315 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_307 (21PG65-1) | SAMN39503527 | 17/02/2025 | |||||||
| 442 | SRX23311272 | SRP484717 | Illumina NovaSeq 6000 | SRS20187602 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025316 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_308 (21PG65-1) | SAMN39503526 | 17/02/2025 | |||||||
| 443 | SRX23311273 | SRP484717 | Illumina NovaSeq 6000 | SRS20187601 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025317 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_309 (21PG65-1) | SAMN39503525 | 17/02/2025 | |||||||
| 444 | SRX23311274 | SRP484717 | Illumina NovaSeq 6000 | SRS20187600 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025318 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_31 (21PG40-2) | SAMN39503524 | 17/02/2025 | |||||||
| 445 | SRX23311275 | SRP484717 | Illumina NovaSeq 6000 | SRS20187603 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025319 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_310 (21PG65-1) | SAMN39503523 | 17/02/2025 | |||||||
| 446 | SRX23311276 | SRP484717 | Illumina NovaSeq 6000 | SRS20187604 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025320 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_311 (21PG65-1) | SAMN39503522 | 17/02/2025 | |||||||
| 447 | SRX23311277 | SRP484717 | Illumina NovaSeq 6000 | SRS20187605 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025321 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_312 (21PG65-1) | SAMN39503521 | 17/02/2025 | |||||||
| 448 | SRX23311278 | SRP484717 | Illumina NovaSeq 6000 | SRS20187606 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025322 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_313 (21PG65-1) | SAMN39503520 | 17/02/2025 | |||||||
| 449 | SRX23311279 | SRP484717 | Illumina NovaSeq 6000 | SRS20187607 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025323 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_314 (21PG65-2) | SAMN39503519 | 17/02/2025 | |||||||
| 450 | SRX23311356 | SRP484717 | Illumina NovaSeq 6000 | SRS20187682 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025324 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_315 (21PG65-2) | SAMN39503518 | 17/02/2025 | |||||||
| 451 | SRX23311357 | SRP484717 | Illumina NovaSeq 6000 | SRS20187686 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025325 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_316 (21PG65-2) | SAMN39503517 | 17/02/2025 | |||||||
| 452 | SRX23311358 | SRP484717 | Illumina NovaSeq 6000 | SRS20187685 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025326 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_317 (21PG65-2) | SAMN39503516 | 17/02/2025 | |||||||
| 453 | SRX23311359 | SRP484717 | Illumina NovaSeq 6000 | SRS20187687 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025327 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_318 (21PG65-2) | SAMN39503515 | 17/02/2025 | |||||||
| 454 | SRX23311360 | SRP484717 | Illumina NovaSeq 6000 | SRS20187688 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025328 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_319 (21PG65-2) | SAMN39503514 | 17/02/2025 | |||||||
| 455 | SRX23311361 | SRP484717 | Illumina NovaSeq 6000 | SRS20187690 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025329 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_32 (21PG40-2) | SAMN39503513 | 17/02/2025 | |||||||
| 456 | SRX23311362 | SRP484717 | Illumina NovaSeq 6000 | SRS20187689 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025330 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_320 (21PG65-2) | SAMN39503512 | 17/02/2025 | |||||||
| 457 | SRX23311363 | SRP484717 | Illumina NovaSeq 6000 | SRS20187691 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025331 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_321 (21PG65-2) | SAMN39503511 | 17/02/2025 | |||||||
| 458 | SRX23311223 | SRP484717 | Illumina NovaSeq 6000 | SRS20187550 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025332 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_322 (21PG65-2) | SAMN39503510 | 17/02/2025 | |||||||
| 459 | SRX23311224 | SRP484717 | Illumina NovaSeq 6000 | SRS20187553 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025333 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_323 (20PG3-1) | SAMN39503509 | 17/02/2025 | |||||||
| 460 | SRX23310946 | SRP484717 | Illumina NovaSeq 6000 | SRS20187274 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025340 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_33 (21PG40-2) | SAMN39503502 | 17/02/2025 | |||||||
| 461 | SRX23310947 | SRP484717 | Illumina NovaSeq 6000 | SRS20187275 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025341 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_330 (20PG3-1) | SAMN39503501 | 17/02/2025 | |||||||
| 462 | SRX23310948 | SRP484717 | Illumina NovaSeq 6000 | SRS20187276 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025342 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_331 (20PG3-1) | SAMN39503500 | 17/02/2025 | |||||||
| 463 | SRX23310953 | SRP484717 | Illumina NovaSeq 6000 | SRS20187281 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025347 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_336 (20PG3-1) | SAMN39503495 | 17/02/2025 | |||||||
| 464 | SRX23311282 | SRP484717 | Illumina NovaSeq 6000 | SRS20187609 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025350 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_339 (20PG3-1) | SAMN39503492 | 17/02/2025 | |||||||
| 465 | SRX23311283 | SRP484717 | Illumina NovaSeq 6000 | SRS20187611 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025351 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_34 (21PG40-2) | SAMN39503491 | 17/02/2025 | |||||||
| 466 | SRX23311284 | SRP484717 | Illumina NovaSeq 6000 | SRS20187612 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025352 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_340 (20PG3-1) | SAMN39503490 | 17/02/2025 | |||||||
| 467 | SRX23311286 | SRP484717 | Illumina NovaSeq 6000 | SRS20187614 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025354 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_342 (20PG3-1) | SAMN39503488 | 17/02/2025 | |||||||
| 468 | SRX23311366 | SRP484717 | Illumina NovaSeq 6000 | SRS20187693 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025358 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_346 (20PG4-3) | SAMN39503484 | 17/02/2025 | |||||||
| 469 | SRX23311367 | SRP484717 | Illumina NovaSeq 6000 | SRS20187695 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025359 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_347 (20PG4-3) | SAMN39503483 | 17/02/2025 | |||||||
| 470 | SRX23311368 | SRP484717 | Illumina NovaSeq 6000 | SRS20187697 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025360 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_348 (20PG4-3) | SAMN39503482 | 17/02/2025 | |||||||
| 471 | SRX23311369 | SRP484717 | Illumina NovaSeq 6000 | SRS20187696 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025361 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_349 (20PG4-3) | SAMN39503481 | 17/02/2025 | |||||||
| 472 | SRX23311370 | SRP484717 | Illumina NovaSeq 6000 | SRS20187700 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025362 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_35 (21PG40-2) | SAMN39503480 | 17/02/2025 | |||||||
| 473 | SRX23311371 | SRP484717 | Illumina NovaSeq 6000 | SRS20187702 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025363 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_350 (20PG4-3) | SAMN39503479 | 17/02/2025 | |||||||
| 474 | SRX23311231 | SRP484717 | Illumina NovaSeq 6000 | SRS20187560 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025364 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_351 (20PG4-3) | SAMN39503478 | 17/02/2025 | |||||||
| 475 | SRX23311232 | SRP484717 | Illumina NovaSeq 6000 | SRS20187566 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025365 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_352 (20PG4-3) | SAMN39503477 | 17/02/2025 | |||||||
| 476 | SRX23311233 | SRP484717 | Illumina NovaSeq 6000 | SRS20187559 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025366 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_353 (20PG4-3) | SAMN39503476 | 17/02/2025 | |||||||
| 477 | SRX23311234 | SRP484717 | Illumina NovaSeq 6000 | SRS20187561 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025367 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_354 (20PG4-3) | SAMN39503475 | 17/02/2025 | |||||||
| 478 | SRX23311235 | SRP484717 | Illumina NovaSeq 6000 | SRS20187562 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025368 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_355 (20PG4-3) | SAMN39503474 | 17/02/2025 | |||||||
| 479 | SRX23311236 | SRP484717 | Illumina NovaSeq 6000 | SRS20187567 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025369 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_356 (20PG4-3) | SAMN39503473 | 17/02/2025 | |||||||
| 480 | SRX23311237 | SRP484717 | Illumina NovaSeq 6000 | SRS20187563 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025370 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_357 (20PG4-3) | SAMN39503472 | 17/02/2025 | |||||||
| 481 | SRX23311238 | SRP484717 | Illumina NovaSeq 6000 | SRS20187564 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025371 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_358 (20PG4-3) | SAMN39503471 | 17/02/2025 | |||||||
| 482 | SRX23310954 | SRP484717 | Illumina NovaSeq 6000 | SRS20187282 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025372 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_359 (21PG33-2) | SAMN39503470 | 17/02/2025 | |||||||
| 483 | SRX23310955 | SRP484717 | Illumina NovaSeq 6000 | SRS20187285 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025373 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_36 (21PG40-2) | SAMN39503469 | 17/02/2025 | |||||||
| 484 | SRX23310956 | SRP484717 | Illumina NovaSeq 6000 | SRS20187283 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025374 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_360 (21PG33-2) | SAMN39503468 | 17/02/2025 | |||||||
| 485 | SRX23310957 | SRP484717 | Illumina NovaSeq 6000 | SRS20187284 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025375 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_361 (21PG33-2) | SAMN39503467 | 17/02/2025 | |||||||
| 486 | SRX23310958 | SRP484717 | Illumina NovaSeq 6000 | SRS20187286 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025376 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_362 (21PG33-2) | SAMN39503466 | 17/02/2025 | |||||||
| 487 | SRX23310959 | SRP484717 | Illumina NovaSeq 6000 | SRS20187288 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025377 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_363 (21PG33-2) | SAMN39503465 | 17/02/2025 | |||||||
| 488 | SRX23310960 | SRP484717 | Illumina NovaSeq 6000 | SRS20187287 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025378 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_364 (21PG33-2) | SAMN39503464 | 17/02/2025 | |||||||
| 489 | SRX23310961 | SRP484717 | Illumina NovaSeq 6000 | SRS20187289 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025379 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_365 (21PG33-2) | SAMN39503463 | 17/02/2025 | |||||||
| 490 | SRX23311288 | SRP484717 | Illumina NovaSeq 6000 | SRS20187615 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025380 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_366 (21PG33-2) | SAMN39503462 | 17/02/2025 | |||||||
| 491 | SRX23311291 | SRP484717 | Illumina NovaSeq 6000 | SRS20187619 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025383 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_369 (21PG33-2) | SAMN39503459 | 17/02/2025 | |||||||
| 492 | SRX23311292 | SRP484717 | Illumina NovaSeq 6000 | SRS20187620 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025384 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_37 (21PG40-2) | SAMN39503458 | 17/02/2025 | |||||||
| 493 | SRX23311293 | SRP484717 | Illumina NovaSeq 6000 | SRS20187621 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025385 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_370 (21PG33-2) | SAMN39503457 | 17/02/2025 | |||||||
| 494 | SRX23311294 | SRP484717 | Illumina NovaSeq 6000 | SRS20187626 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025386 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_371 (21PG33-2) | SAMN39503456 | 17/02/2025 | |||||||
| 495 | SRX23311295 | SRP484717 | Illumina NovaSeq 6000 | SRS20187623 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025387 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_372 (21PG33-2) | SAMN39503455 | 17/02/2025 | |||||||
| 496 | SRX23311373 | SRP484717 | Illumina NovaSeq 6000 | SRS20187699 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025389 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_39 (21PG40-2) | SAMN39503453 | 17/02/2025 | |||||||
| 497 | SRX23311374 | SRP484717 | Illumina NovaSeq 6000 | SRS20187701 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025390 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_4 (21PG50-3) | SAMN39503452 | 17/02/2025 | |||||||
| 498 | SRX23311376 | SRP484717 | Illumina NovaSeq 6000 | SRS20187704 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025392 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_41 (21PG33-1) | SAMN39503450 | 17/02/2025 | |||||||
| 499 | SRX23311377 | SRP484717 | Illumina NovaSeq 6000 | SRS20187705 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025393 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_42 (21PG33-1) | SAMN39503449 | 17/02/2025 | |||||||
| 500 | SRX23311378 | SRP484717 | Illumina NovaSeq 6000 | SRS20187706 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025394 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_43 (21PG33-1) | SAMN39503448 | 17/02/2025 | |||||||
| 501 | SRX23311379 | SRP484717 | Illumina NovaSeq 6000 | SRS20187709 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025395 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_44 (21PG33-1) | SAMN39503447 | 17/02/2025 | |||||||
| 502 | SRX23311239 | SRP484717 | Illumina NovaSeq 6000 | SRS20187573 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025396 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_45 (21PG33-1) | SAMN39503446 | 17/02/2025 | |||||||
| 503 | SRX23311241 | SRP484717 | Illumina NovaSeq 6000 | SRS20187568 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025398 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_47 (21PG33-1) | SAMN39503444 | 17/02/2025 | |||||||
| 504 | SRX23311242 | SRP484717 | Illumina NovaSeq 6000 | SRS20187569 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025399 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_48 (21PG33-1) | SAMN39503443 | 17/02/2025 | |||||||
| 505 | SRX23311243 | SRP484717 | Illumina NovaSeq 6000 | SRS20187571 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025400 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_49 (21PG33-1) | SAMN39503442 | 17/02/2025 | |||||||
| 506 | SRX23311244 | SRP484717 | Illumina NovaSeq 6000 | SRS20187570 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025401 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_5 (21PG50-3) | SAMN39503441 | 17/02/2025 | |||||||
| 507 | SRX23311245 | SRP484717 | Illumina NovaSeq 6000 | SRS20187572 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025402 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_50 (21PG33-1) | SAMN39503440 | 17/02/2025 | |||||||
| 508 | SRX23311246 | SRP484717 | Illumina NovaSeq 6000 | SRS20187574 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025403 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_51 (21PG33-1) | SAMN39503439 | 17/02/2025 | |||||||
| 509 | SRX23310962 | SRP484717 | Illumina NovaSeq 6000 | SRS20187291 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025404 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_52 (21PG33-1) | SAMN39503438 | 17/02/2025 | |||||||
| 510 | SRX23310963 | SRP484717 | Illumina NovaSeq 6000 | SRS20187290 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025405 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_53 (21PG33-1) | SAMN39503437 | 17/02/2025 | |||||||
| 511 | SRX23310964 | SRP484717 | Illumina NovaSeq 6000 | SRS20187293 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025406 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_54 (21PG33-1) | SAMN39503436 | 17/02/2025 | |||||||
| 512 | SRX23310965 | SRP484717 | Illumina NovaSeq 6000 | SRS20187292 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025407 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_55 (21PG33-1) | SAMN39503435 | 17/02/2025 | |||||||
| 513 | SRX23310966 | SRP484717 | Illumina NovaSeq 6000 | SRS20187294 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025408 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_56 (21PG33-1) | SAMN39503434 | 17/02/2025 | |||||||
| 514 | SRX23310967 | SRP484717 | Illumina NovaSeq 6000 | SRS20187295 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025409 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_57 (21PG33-1) | SAMN39503433 | 17/02/2025 | |||||||
| 515 | SRX23310968 | SRP484717 | Illumina NovaSeq 6000 | SRS20187296 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025410 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_58 (21PG33-1) | SAMN39503432 | 17/02/2025 | |||||||
| 516 | SRX23311296 | SRP484717 | Illumina NovaSeq 6000 | SRS20187622 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025412 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_6 (21PG50-3) | SAMN39503430 | 17/02/2025 | |||||||
| 517 | SRX23311297 | SRP484717 | Illumina NovaSeq 6000 | SRS20187624 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025413 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_60 (21PG33-1) | SAMN39503429 | 17/02/2025 | |||||||
| 518 | SRX23311298 | SRP484717 | Illumina NovaSeq 6000 | SRS20187627 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025414 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_61 (21PG33-1) | SAMN39503428 | 17/02/2025 | |||||||
| 519 | SRX23311299 | SRP484717 | Illumina NovaSeq 6000 | SRS20187625 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025415 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_62 (21PG33-1) | SAMN39503427 | 17/02/2025 | |||||||
| 520 | SRX23311383 | SRP484717 | Illumina NovaSeq 6000 | SRS20187711 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025423 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_7 (21PG50-3) | SAMN39503419 | 17/02/2025 | |||||||
| 521 | SRX23311253 | SRP484717 | Illumina NovaSeq 6000 | SRS20187581 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025434 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_8 (21PG77-1) | SAMN39503408 | 17/02/2025 | |||||||
| 522 | SRX23311254 | SRP484717 | Illumina NovaSeq 6000 | SRS20187582 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025435 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_80 (21PG42-2) | SAMN39503407 | 17/02/2025 | |||||||
| 523 | SRX23310971 | SRP484717 | Illumina NovaSeq 6000 | SRS20187299 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025437 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_82 (21PG55-1) | SAMN39503405 | 17/02/2025 | |||||||
| 524 | SRX23310972 | SRP484717 | Illumina NovaSeq 6000 | SRS20187300 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025438 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_83 (21PG55-1) | SAMN39503404 | 17/02/2025 | |||||||
| 525 | SRX23310973 | SRP484717 | Illumina NovaSeq 6000 | SRS20187301 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025439 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_84 (21PG55-1) | SAMN39503403 | 17/02/2025 | |||||||
| 526 | SRX23310974 | SRP484717 | Illumina NovaSeq 6000 | SRS20187302 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025440 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_85 (21PG55-1) | SAMN39503402 | 17/02/2025 | |||||||
| 527 | SRX23310975 | SRP484717 | Illumina NovaSeq 6000 | SRS20187305 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025441 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_86 (21PG55-1) | SAMN39503401 | 17/02/2025 | |||||||
| 528 | SRX23310976 | SRP484717 | Illumina NovaSeq 6000 | SRS20187304 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025442 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_87 (21PG55-1) | SAMN39503400 | 17/02/2025 | |||||||
| 529 | SRX23310977 | SRP484717 | Illumina NovaSeq 6000 | SRS20187303 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025443 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_88 (21PG55-1) | SAMN39503399 | 17/02/2025 | |||||||
| 530 | SRX23311304 | SRP484717 | Illumina NovaSeq 6000 | SRS20187631 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025444 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_89 (21PG55-1) | SAMN39503398 | 17/02/2025 | |||||||
| 531 | SRX23311305 | SRP484717 | Illumina NovaSeq 6000 | SRS20187634 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025445 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_9 (21PG77-1) | SAMN39503397 | 17/02/2025 | |||||||
| 532 | SRX23311306 | SRP484717 | Illumina NovaSeq 6000 | SRS20187632 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025446 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_90 (21PG55-1) | SAMN39503396 | 17/02/2025 | |||||||
| 533 | SRX23311307 | SRP484717 | Illumina NovaSeq 6000 | SRS20187637 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025447 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_91 (21PG55-1) | SAMN39503395 | 17/02/2025 | |||||||
| 534 | SRX23311309 | SRP484717 | Illumina NovaSeq 6000 | SRS20187636 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025449 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_93 (21PG55-1) | SAMN39503393 | 17/02/2025 | |||||||
| 535 | SRX23311310 | SRP484717 | Illumina NovaSeq 6000 | SRS20187638 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025450 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_94 (21PG55-1) | SAMN39503392 | 17/02/2025 | |||||||
| 536 | SRX23311311 | SRP484717 | Illumina NovaSeq 6000 | SRS20187639 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025451 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_95 (21PG55-1) | SAMN39503391 | 17/02/2025 | |||||||
| 537 | SRX23311388 | SRP484717 | Illumina NovaSeq 6000 | SRS20187716 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025452 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_96 (21PG55-1) | SAMN39503390 | 17/02/2025 | |||||||
| 538 | SRX23311389 | SRP484717 | Illumina NovaSeq 6000 | SRS20187718 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025453 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_97 (21PG55-3) | SAMN39503389 | 17/02/2025 | |||||||
| 539 | SRX23311390 | SRP484717 | Illumina NovaSeq 6000 | SRS20187720 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025454 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_98 (21PG55-3) | SAMN39503388 | 17/02/2025 | |||||||
| 540 | SRX23311391 | SRP484717 | Illumina NovaSeq 6000 | SRS20187717 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025455 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_99 (21PG55-3) | SAMN39503387 | 17/02/2025 |
cell type - smart-seq¶
In [ ]:
cell_type = library['infoCellType_abInitio'].drop_duplicates().sort_values()
cell_df = pd.DataFrame(cell_type)
cell_df = cell_df.reindex(columns=[*cell_df.columns.tolist(), 'notes_cell', 'cellTypeId_', 'cellTypeName_', 'cellTypeAnnotationStatus_', 'cell_type_new','comment_cell'], fill_value="")
cell_df.to_csv(info_celltype_path, sep="\t", index=False)
if not os.path.exists(info_celltype_complete_path):
cell_df.to_csv(info_celltype_complete_path, sep="\t", index=False)
In [ ]:
cell_df_complete = pd.read_csv(info_celltype_complete_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
display_df(cell_df_complete)
| infoCellType_abInitio | notes_cell | cellTypeId_ | cellTypeName_ | cellTypeAnnotationStatus_ | cell_type_new | comment_cell | |
|---|---|---|---|---|---|---|---|
| 0 | ICM: EPI | inner cell mass: epiblast | CL:0000352 | epiblast cell | perfect match | ||
| 1 | ICM: ICM | icm: inner cell mass | CL:2000020 | inner cell mass cell | perfect match | ||
| 2 | ICM: PE | icm: primitive endoderm | CL:0000223 | endodermal cell | other | ||
| 3 | Prelineage: 8 cell | CL:0000353 | blastoderm cell | other | |||
| 4 | Prelineage: Morula | CL:0000353 | blastoderm cell | other | |||
| 5 | Prelineage: Precavitation | CL:0000353 | blastoderm cell | other | |||
| 6 | TE: mural | TE = trophoectoderm, per paper mural TE initiates attachment and implantation, no subterms for TE cells in CL | CL:1000274 | trophectodermal cell | missing child term | ||
| 7 | TE: polar | TE = trophoectoderm, no subterms for TE cells in CL | CL:1000274 | trophectodermal cell | missing child term |
In [ ]:
library = library.merge(cell_df_complete, left_on='infoCellType_abInitio', right_on='infoCellType_abInitio')
In [ ]:
library['cellTypeId'] = library['cellTypeId_'].values
library['cellTypeName'] = library['cellTypeName_'].values
library['cellTypeAnnotationStatus'] = library['cellTypeAnnotationStatus_'].values
In [ ]:
## optional - update infoOrgan, add anat-specific comments
#library['infoCellType_inferred'] = library['cell_type_new'].values
#library['comment'] = library[['comment', 'comment_cell']].agg(' '.join, axis=1)
In [ ]:
# reformat, save progress
library = library[library_cols]
display_df(library)
library.to_csv(library_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRX23310999 | SRP484717 | Illumina NovaSeq 6000 | SRS20187327 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024795 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_1 (21PG50-2) | SAMN39504047 | 17/02/2025 | |||||||||||||
| 1 | SRX23311255 | SRP484717 | Illumina NovaSeq 6000 | SRS20187583 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024796 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_10 (21PG39-1) | SAMN39504046 | 17/02/2025 | |||||||||||||
| 2 | SRX23311256 | SRP484717 | Illumina NovaSeq 6000 | SRS20187584 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024797 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_100 (21PG55-2) | SAMN39504045 | 17/02/2025 | |||||||||||||
| 3 | SRX23311257 | SRP484717 | Illumina NovaSeq 6000 | SRS20187585 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024798 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_101 (21PG55-2) | SAMN39504044 | 17/02/2025 | |||||||||||||
| 4 | SRX23311258 | SRP484717 | Illumina NovaSeq 6000 | SRS20187586 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024799 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_102 (21PG55-2) | SAMN39504043 | 17/02/2025 | |||||||||||||
| 5 | SRX23311259 | SRP484717 | Illumina NovaSeq 6000 | SRS20187590 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024800 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_103 (21PG55-2) | SAMN39504042 | 17/02/2025 | |||||||||||||
| 6 | SRX23310825 | SRP484717 | Illumina NovaSeq 6000 | SRS20187153 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024801 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_104 (21PG55-2) | SAMN39504041 | 17/02/2025 | |||||||||||||
| 7 | SRX23310826 | SRP484717 | Illumina NovaSeq 6000 | SRS20187154 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024802 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_105 (21PG55-2) | SAMN39504040 | 17/02/2025 | |||||||||||||
| 8 | SRX23310827 | SRP484717 | Illumina NovaSeq 6000 | SRS20187157 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024803 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_106 (21PG55-2) | SAMN39504039 | 17/02/2025 | |||||||||||||
| 9 | SRX23311000 | SRP484717 | Illumina NovaSeq 6000 | SRS20187330 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024804 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_107 (21PG55-2) | SAMN39504038 | 17/02/2025 | |||||||||||||
| 10 | SRX23311001 | SRP484717 | Illumina NovaSeq 6000 | SRS20187329 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024805 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_108 (21PG55-2) | SAMN39504037 | 17/02/2025 | |||||||||||||
| 11 | SRX23311002 | SRP484717 | Illumina NovaSeq 6000 | SRS20187328 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024806 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_109 (21PG34-1) | SAMN39504036 | 17/02/2025 | |||||||||||||
| 12 | SRX23311003 | SRP484717 | Illumina NovaSeq 6000 | SRS20187331 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024807 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_11 (21PG39-1) | SAMN39504035 | 17/02/2025 | |||||||||||||
| 13 | SRX23311004 | SRP484717 | Illumina NovaSeq 6000 | SRS20187333 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024808 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_110 (21PG34-1) | SAMN39504034 | 17/02/2025 | |||||||||||||
| 14 | SRX23311006 | SRP484717 | Illumina NovaSeq 6000 | SRS20187334 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024810 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_112 (21PG34-1) | SAMN39504032 | 17/02/2025 | |||||||||||||
| 15 | SRX23311007 | SRP484717 | Illumina NovaSeq 6000 | SRS20187335 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024811 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_113 (21PG37-2) | SAMN39504031 | 17/02/2025 | |||||||||||||
| 16 | SRX23311392 | SRP484717 | Illumina NovaSeq 6000 | SRS20187719 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024812 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_114 (21PG37-2) | SAMN39504030 | 17/02/2025 | |||||||||||||
| 17 | SRX23311393 | SRP484717 | Illumina NovaSeq 6000 | SRS20187721 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024813 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_115 (21PG37-2) | SAMN39504029 | 17/02/2025 | |||||||||||||
| 18 | SRX23311394 | SRP484717 | Illumina NovaSeq 6000 | SRS20187722 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024814 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_116 (21PG37-2) | SAMN39504028 | 17/02/2025 | |||||||||||||
| 19 | SRX23311395 | SRP484717 | Illumina NovaSeq 6000 | SRS20187724 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024815 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_117 (21PG37-2) | SAMN39504027 | 17/02/2025 | |||||||||||||
| 20 | SRX23311397 | SRP484717 | Illumina NovaSeq 6000 | SRS20187725 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024817 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_119 (21PG37-2) | SAMN39504025 | 17/02/2025 | |||||||||||||
| 21 | SRX23311398 | SRP484717 | Illumina NovaSeq 6000 | SRS20187726 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024818 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_12 (21PG39-1) | SAMN39504024 | 17/02/2025 | |||||||||||||
| 22 | SRX23311399 | SRP484717 | Illumina NovaSeq 6000 | SRS20187727 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024819 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_120 (21PG37-2) | SAMN39504023 | 17/02/2025 | |||||||||||||
| 23 | SRX23310828 | SRP484717 | Illumina NovaSeq 6000 | SRS20187156 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024820 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_121 (21PG37-2) | SAMN39504022 | 17/02/2025 | |||||||||||||
| 24 | SRX23310829 | SRP484717 | Illumina NovaSeq 6000 | SRS20187158 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024821 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_122 (21PG37-2) | SAMN39504021 | 17/02/2025 | |||||||||||||
| 25 | SRX23310831 | SRP484717 | Illumina NovaSeq 6000 | SRS20187159 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024823 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_124 (21PG37-3) | SAMN39504019 | 17/02/2025 | |||||||||||||
| 26 | SRX23310832 | SRP484717 | Illumina NovaSeq 6000 | SRS20187160 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024824 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_125 (21PG37-3) | SAMN39504018 | 17/02/2025 | |||||||||||||
| 27 | SRX23310833 | SRP484717 | Illumina NovaSeq 6000 | SRS20187161 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024825 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_126 (21PG37-3) | SAMN39504017 | 17/02/2025 | |||||||||||||
| 28 | SRX23310834 | SRP484717 | Illumina NovaSeq 6000 | SRS20187163 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024826 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_127 (21PG37-3) | SAMN39504016 | 17/02/2025 | |||||||||||||
| 29 | SRX23310835 | SRP484717 | Illumina NovaSeq 6000 | SRS20187162 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024827 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_128 (21PG37-3) | SAMN39504015 | 17/02/2025 | |||||||||||||
| 30 | SRX23311008 | SRP484717 | Illumina NovaSeq 6000 | SRS20187336 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024828 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_129 (21PG37-3) | SAMN39504014 | 17/02/2025 | |||||||||||||
| 31 | SRX23311009 | SRP484717 | Illumina NovaSeq 6000 | SRS20187337 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024829 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_13 (21PG39-1) | SAMN39504013 | 17/02/2025 | |||||||||||||
| 32 | SRX23311010 | SRP484717 | Illumina NovaSeq 6000 | SRS20187338 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024830 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_130 (21PG37-3) | SAMN39504012 | 17/02/2025 | |||||||||||||
| 33 | SRX23311011 | SRP484717 | Illumina NovaSeq 6000 | SRS20187339 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024831 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_131 (21PG37-3) | SAMN39504011 | 17/02/2025 | |||||||||||||
| 34 | SRX23311012 | SRP484717 | Illumina NovaSeq 6000 | SRS20187340 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024832 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_132 (21PG37-3) | SAMN39504010 | 17/02/2025 | |||||||||||||
| 35 | SRX23311013 | SRP484717 | Illumina NovaSeq 6000 | SRS20187341 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024833 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_133 (21PG37-3) | SAMN39504009 | 17/02/2025 | |||||||||||||
| 36 | SRX23311014 | SRP484717 | Illumina NovaSeq 6000 | SRS20187342 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024834 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_134 (21PG37-3) | SAMN39504008 | 17/02/2025 | |||||||||||||
| 37 | SRX23311015 | SRP484717 | Illumina NovaSeq 6000 | SRS20187343 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024835 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_135 (21PG37-3) | SAMN39504007 | 17/02/2025 | |||||||||||||
| 38 | SRX23311400 | SRP484717 | Illumina NovaSeq 6000 | SRS20187728 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024836 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_136 (21PG37-3) | SAMN39504006 | 17/02/2025 | |||||||||||||
| 39 | SRX23311402 | SRP484717 | Illumina NovaSeq 6000 | SRS20187730 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024838 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_138 (21PG37-3) | SAMN39504004 | 17/02/2025 | |||||||||||||
| 40 | SRX23311404 | SRP484717 | Illumina NovaSeq 6000 | SRS20187731 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024840 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_14 (21PG39-1) | SAMN39504002 | 17/02/2025 | |||||||||||||
| 41 | SRX23311405 | SRP484717 | Illumina NovaSeq 6000 | SRS20187733 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024841 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_140 (21PG37-3) | SAMN39504001 | 17/02/2025 | |||||||||||||
| 42 | SRX23311406 | SRP484717 | Illumina NovaSeq 6000 | SRS20187732 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024842 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_141 (21PG37-3) | SAMN39504000 | 17/02/2025 | |||||||||||||
| 43 | SRX23310985 | SRP484717 | Illumina NovaSeq 6000 | SRS20187311 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024851 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_15 (21PG39-1) | SAMN39503991 | 17/02/2025 | |||||||||||||
| 44 | SRX23310837 | SRP484717 | Illumina NovaSeq 6000 | SRS20187165 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024853 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_151 (21PG55-2) | SAMN39503989 | 17/02/2025 | |||||||||||||
| 45 | SRX23310840 | SRP484717 | Illumina NovaSeq 6000 | SRS20187168 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024856 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_154 (21PG53-1) | SAMN39503986 | 17/02/2025 | |||||||||||||
| 46 | SRX23310842 | SRP484717 | Illumina NovaSeq 6000 | SRS20187170 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024858 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_156 (21PG55-2) | SAMN39503984 | 17/02/2025 | |||||||||||||
| 47 | SRX23310843 | SRP484717 | Illumina NovaSeq 6000 | SRS20187171 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024859 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_157 (21PG53-1) | SAMN39503983 | 17/02/2025 | |||||||||||||
| 48 | SRX23311016 | SRP484717 | Illumina NovaSeq 6000 | SRS20187344 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024860 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_158 (21PG53-1) | SAMN39503982 | 17/02/2025 | |||||||||||||
| 49 | SRX23311017 | SRP484717 | Illumina NovaSeq 6000 | SRS20187345 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024861 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_159 (21PG53-1) | SAMN39503981 | 17/02/2025 | |||||||||||||
| 50 | SRX23311018 | SRP484717 | Illumina NovaSeq 6000 | SRS20187346 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024862 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_16 (21PG39-1) | SAMN39503980 | 17/02/2025 | |||||||||||||
| 51 | SRX23311019 | SRP484717 | Illumina NovaSeq 6000 | SRS20187347 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024863 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_160 (21PG53-1) | SAMN39503979 | 17/02/2025 | |||||||||||||
| 52 | SRX23311020 | SRP484717 | Illumina NovaSeq 6000 | SRS20187348 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024864 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_161 (21PG53-1) | SAMN39503978 | 17/02/2025 | |||||||||||||
| 53 | SRX23311021 | SRP484717 | Illumina NovaSeq 6000 | SRS20187350 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024865 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_162 (21PG53-1) | SAMN39503977 | 17/02/2025 | |||||||||||||
| 54 | SRX23311022 | SRP484717 | Illumina NovaSeq 6000 | SRS20187352 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024866 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_163 (21PG53-1) | SAMN39503976 | 17/02/2025 | |||||||||||||
| 55 | SRX23311023 | SRP484717 | Illumina NovaSeq 6000 | SRS20187351 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024867 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_164 (21PG53-1) | SAMN39503975 | 17/02/2025 | |||||||||||||
| 56 | SRX23311408 | SRP484717 | Illumina NovaSeq 6000 | SRS20187736 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024868 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_165 (21PG53-1) | SAMN39503974 | 17/02/2025 | |||||||||||||
| 57 | SRX23311409 | SRP484717 | Illumina NovaSeq 6000 | SRS20187738 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024869 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_166 (21PG53-1) | SAMN39503973 | 17/02/2025 | |||||||||||||
| 58 | SRX23311410 | SRP484717 | Illumina NovaSeq 6000 | SRS20187737 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024870 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_167 (21PG53-1) | SAMN39503972 | 17/02/2025 | |||||||||||||
| 59 | SRX23311411 | SRP484717 | Illumina NovaSeq 6000 | SRS20187741 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024871 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_168 (21PG53-1) | SAMN39503971 | 17/02/2025 | |||||||||||||
| 60 | SRX23311412 | SRP484717 | Illumina NovaSeq 6000 | SRS20187742 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024872 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_169 (21PG53-1) | SAMN39503970 | 17/02/2025 | |||||||||||||
| 61 | SRX23311413 | SRP484717 | Illumina NovaSeq 6000 | SRS20187740 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024873 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_17 (21PG39-2) | SAMN39503969 | 17/02/2025 | |||||||||||||
| 62 | SRX23311414 | SRP484717 | Illumina NovaSeq 6000 | SRS20187739 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024874 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_170 (21PG53-1) | SAMN39503968 | 17/02/2025 | |||||||||||||
| 63 | SRX23310987 | SRP484717 | Illumina NovaSeq 6000 | SRS20187315 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024877 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_173 (21PG77-2) | SAMN39503965 | 17/02/2025 | |||||||||||||
| 64 | SRX23310988 | SRP484717 | Illumina NovaSeq 6000 | SRS20187316 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024878 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_174 (21PG77-2) | SAMN39503964 | 17/02/2025 | |||||||||||||
| 65 | SRX23310990 | SRP484717 | Illumina NovaSeq 6000 | SRS20187318 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024880 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_176 (21PG77-2) | SAMN39503962 | 17/02/2025 | |||||||||||||
| 66 | SRX23310991 | SRP484717 | Illumina NovaSeq 6000 | SRS20187319 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024881 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_177 (21PG77-2) | SAMN39503961 | 17/02/2025 | |||||||||||||
| 67 | SRX23310992 | SRP484717 | Illumina NovaSeq 6000 | SRS20187321 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024882 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_178 (21PG77-2) | SAMN39503960 | 17/02/2025 | |||||||||||||
| 68 | SRX23310993 | SRP484717 | Illumina NovaSeq 6000 | SRS20187320 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024883 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_179 (21PG77-2) | SAMN39503959 | 17/02/2025 | |||||||||||||
| 69 | SRX23310844 | SRP484717 | Illumina NovaSeq 6000 | SRS20187173 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024884 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_18 (21PG40-1) | SAMN39503958 | 17/02/2025 | |||||||||||||
| 70 | SRX23310845 | SRP484717 | Illumina NovaSeq 6000 | SRS20187172 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024885 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_180 (21PG77-2) | SAMN39503957 | 17/02/2025 | |||||||||||||
| 71 | SRX23310846 | SRP484717 | Illumina NovaSeq 6000 | SRS20187175 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024886 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_181 (21PG77-2) | SAMN39503956 | 17/02/2025 | |||||||||||||
| 72 | SRX23310847 | SRP484717 | Illumina NovaSeq 6000 | SRS20187174 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024887 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_182 (21PG77-2) | SAMN39503955 | 17/02/2025 | |||||||||||||
| 73 | SRX23310848 | SRP484717 | Illumina NovaSeq 6000 | SRS20187176 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024888 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_183 (21PG77-2) | SAMN39503954 | 17/02/2025 | |||||||||||||
| 74 | SRX23310849 | SRP484717 | Illumina NovaSeq 6000 | SRS20187178 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024889 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_184 (21PG77-2) | SAMN39503953 | 17/02/2025 | |||||||||||||
| 75 | SRX23310850 | SRP484717 | Illumina NovaSeq 6000 | SRS20187177 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024890 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_185 (21PG77-2) | SAMN39503952 | 17/02/2025 | |||||||||||||
| 76 | SRX23310851 | SRP484717 | Illumina NovaSeq 6000 | SRS20187179 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024891 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_186 (21PG50-1) | SAMN39503951 | 17/02/2025 | |||||||||||||
| 77 | SRX23311024 | SRP484717 | Illumina NovaSeq 6000 | SRS20187349 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024892 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_187 (21PG50-1) | SAMN39503950 | 17/02/2025 | |||||||||||||
| 78 | SRX23311025 | SRP484717 | Illumina NovaSeq 6000 | SRS20187354 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024893 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_188 (21PG50-1) | SAMN39503949 | 17/02/2025 | |||||||||||||
| 79 | SRX23311027 | SRP484717 | Illumina NovaSeq 6000 | SRS20187353 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024895 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_19 (21PG40-1) | SAMN39503947 | 17/02/2025 | |||||||||||||
| 80 | SRX23311029 | SRP484717 | Illumina NovaSeq 6000 | SRS20187356 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024897 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_191 (21PG50-1) | SAMN39503945 | 17/02/2025 | |||||||||||||
| 81 | SRX23311030 | SRP484717 | Illumina NovaSeq 6000 | SRS20187359 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024898 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_192 (21PG50-1) | SAMN39503944 | 17/02/2025 | |||||||||||||
| 82 | SRX23311031 | SRP484717 | Illumina NovaSeq 6000 | SRS20187360 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024899 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_193 (21PG57-1) | SAMN39503943 | 17/02/2025 | |||||||||||||
| 83 | SRX23311417 | SRP484717 | Illumina NovaSeq 6000 | SRS20187747 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024901 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_195 (21PG57-1) | SAMN39503941 | 17/02/2025 | |||||||||||||
| 84 | SRX23311418 | SRP484717 | Illumina NovaSeq 6000 | SRS20187745 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024902 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_196 (21PG57-1) | SAMN39503940 | 17/02/2025 | |||||||||||||
| 85 | SRX23311419 | SRP484717 | Illumina NovaSeq 6000 | SRS20187746 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024903 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_198 (21PG57-1) | SAMN39503939 | 17/02/2025 | |||||||||||||
| 86 | SRX23311420 | SRP484717 | Illumina NovaSeq 6000 | SRS20187749 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024904 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_2 (21PG50-2) | SAMN39503938 | 17/02/2025 | |||||||||||||
| 87 | SRX23311421 | SRP484717 | Illumina NovaSeq 6000 | SRS20187748 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024905 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_20 (21PG40-1) | SAMN39503937 | 17/02/2025 | |||||||||||||
| 88 | SRX23311422 | SRP484717 | Illumina NovaSeq 6000 | SRS20187750 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024906 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_200 (21PG57-1) | SAMN39503936 | 17/02/2025 | |||||||||||||
| 89 | SRX23311423 | SRP484717 | Illumina NovaSeq 6000 | SRS20187753 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024907 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_201 (21PG57-1) | SAMN39503935 | 17/02/2025 | |||||||||||||
| 90 | SRX23310994 | SRP484717 | Illumina NovaSeq 6000 | SRS20187322 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024908 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_202 (21PG57-1) | SAMN39503934 | 17/02/2025 | |||||||||||||
| 91 | SRX23310995 | SRP484717 | Illumina NovaSeq 6000 | SRS20187323 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024909 | Late blastocyst: E5.5 | ICM: PE | Late blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_206 (21PG57-1) | SAMN39503933 | 17/02/2025 | |||||||||||||
| 92 | SRX23310996 | SRP484717 | Illumina NovaSeq 6000 | SRS20187324 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024910 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_209 (21PG57-1) | SAMN39503932 | 17/02/2025 | |||||||||||||
| 93 | SRX23310997 | SRP484717 | Illumina NovaSeq 6000 | SRS20187325 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024911 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_21 (21PG40-1) | SAMN39503931 | 17/02/2025 | |||||||||||||
| 94 | SRX23310998 | SRP484717 | Illumina NovaSeq 6000 | SRS20187326 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024912 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_210 (21PG57-1) | SAMN39503930 | 17/02/2025 | |||||||||||||
| 95 | SRX23311086 | SRP484717 | Illumina NovaSeq 6000 | SRS20187411 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024913 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_22 (21PG40-1) | SAMN39503929 | 17/02/2025 | |||||||||||||
| 96 | SRX23311087 | SRP484717 | Illumina NovaSeq 6000 | SRS20187415 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024914 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_23 (21PG40-1) | SAMN39503928 | 17/02/2025 | |||||||||||||
| 97 | SRX23311088 | SRP484717 | Illumina NovaSeq 6000 | SRS20187416 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024915 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_230 (21PG49-3) | SAMN39503927 | 17/02/2025 | |||||||||||||
| 98 | SRX23310852 | SRP484717 | Illumina NovaSeq 6000 | SRS20187180 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024916 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_231 (21PG49-3) | SAMN39503926 | 17/02/2025 | |||||||||||||
| 99 | SRX23310853 | SRP484717 | Illumina NovaSeq 6000 | SRS20187181 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024917 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_232 (21PG49-3) | SAMN39503925 | 17/02/2025 | |||||||||||||
| 100 | SRX23310854 | SRP484717 | Illumina NovaSeq 6000 | SRS20187182 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024918 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_233 (21PG49-3) | SAMN39503924 | 17/02/2025 | |||||||||||||
| 101 | SRX23310855 | SRP484717 | Illumina NovaSeq 6000 | SRS20187183 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024919 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_234 (21PG49-3) | SAMN39503923 | 17/02/2025 | |||||||||||||
| 102 | SRX23310856 | SRP484717 | Illumina NovaSeq 6000 | SRS20187184 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024920 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_235 (21PG49-3) | SAMN39503922 | 17/02/2025 | |||||||||||||
| 103 | SRX23310857 | SRP484717 | Illumina NovaSeq 6000 | SRS20187186 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024921 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_236 (21PG49-3) | SAMN39503921 | 17/02/2025 | |||||||||||||
| 104 | SRX23310858 | SRP484717 | Illumina NovaSeq 6000 | SRS20187187 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024922 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_237 (21PG49-3) | SAMN39503920 | 17/02/2025 | |||||||||||||
| 105 | SRX23310859 | SRP484717 | Illumina NovaSeq 6000 | SRS20187185 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024923 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_238 (21PG49-3) | SAMN39503919 | 17/02/2025 | |||||||||||||
| 106 | SRX23311032 | SRP484717 | Illumina NovaSeq 6000 | SRS20187358 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024924 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_239 (21PG49-3) | SAMN39503918 | 17/02/2025 | |||||||||||||
| 107 | SRX23311033 | SRP484717 | Illumina NovaSeq 6000 | SRS20187362 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024925 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_24 (21PG40-1) | SAMN39503917 | 17/02/2025 | |||||||||||||
| 108 | SRX23311034 | SRP484717 | Illumina NovaSeq 6000 | SRS20187361 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024926 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_240 (21PG49-3) | SAMN39503916 | 17/02/2025 | |||||||||||||
| 109 | SRX23311035 | SRP484717 | Illumina NovaSeq 6000 | SRS20187364 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024927 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_241 (21PG49-3) | SAMN39503915 | 17/02/2025 | |||||||||||||
| 110 | SRX23311036 | SRP484717 | Illumina NovaSeq 6000 | SRS20187365 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024928 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_242 (21PG49-3) | SAMN39503914 | 17/02/2025 | |||||||||||||
| 111 | SRX23311037 | SRP484717 | Illumina NovaSeq 6000 | SRS20187363 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024929 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_243 (21PG49-3) | SAMN39503913 | 17/02/2025 | |||||||||||||
| 112 | SRX23311038 | SRP484717 | Illumina NovaSeq 6000 | SRS20187366 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024930 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_244 (21PG49-3) | SAMN39503912 | 17/02/2025 | |||||||||||||
| 113 | SRX23311039 | SRP484717 | Illumina NovaSeq 6000 | SRS20187367 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024931 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_245 (21PG49-3) | SAMN39503911 | 17/02/2025 | |||||||||||||
| 114 | SRX23311424 | SRP484717 | Illumina NovaSeq 6000 | SRS20187752 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024932 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_246 (21PG49-3) | SAMN39503910 | 17/02/2025 | |||||||||||||
| 115 | SRX23311425 | SRP484717 | Illumina NovaSeq 6000 | SRS20187751 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024933 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_247 (21PG49-3) | SAMN39503909 | 17/02/2025 | |||||||||||||
| 116 | SRX23311426 | SRP484717 | Illumina NovaSeq 6000 | SRS20187754 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024934 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_248 (21PG49-3) | SAMN39503908 | 17/02/2025 | |||||||||||||
| 117 | SRX23311427 | SRP484717 | Illumina NovaSeq 6000 | SRS20187755 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024935 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_249 (21PG49-3) | SAMN39503907 | 17/02/2025 | |||||||||||||
| 118 | SRX23311428 | SRP484717 | Illumina NovaSeq 6000 | SRS20187756 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024936 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_25 (21PG40-1) | SAMN39503906 | 17/02/2025 | |||||||||||||
| 119 | SRX23311429 | SRP484717 | Illumina NovaSeq 6000 | SRS20187757 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024937 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_250 (21PG49-3) | SAMN39503905 | 17/02/2025 | |||||||||||||
| 120 | SRX23311430 | SRP484717 | Illumina NovaSeq 6000 | SRS20187758 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024938 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_251 (21PG49-3) | SAMN39503904 | 17/02/2025 | |||||||||||||
| 121 | SRX23311431 | SRP484717 | Illumina NovaSeq 6000 | SRS20187759 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024939 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_252 (21PG49-3) | SAMN39503903 | 17/02/2025 | |||||||||||||
| 122 | SRX23311089 | SRP484717 | Illumina NovaSeq 6000 | SRS20187417 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024940 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_253 (21PG49-3) | SAMN39503902 | 17/02/2025 | |||||||||||||
| 123 | SRX23311090 | SRP484717 | Illumina NovaSeq 6000 | SRS20187418 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024941 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_254 (21PG76-2) | SAMN39503901 | 17/02/2025 | |||||||||||||
| 124 | SRX23311091 | SRP484717 | Illumina NovaSeq 6000 | SRS20187420 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024942 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_255 (21PG76-2) | SAMN39503900 | 17/02/2025 | |||||||||||||
| 125 | SRX23311093 | SRP484717 | Illumina NovaSeq 6000 | SRS20187421 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024944 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_257 (20PG4-2) | SAMN39503898 | 17/02/2025 | |||||||||||||
| 126 | SRX23311094 | SRP484717 | Illumina NovaSeq 6000 | SRS20187422 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024945 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_258 (20PG4-2) | SAMN39503897 | 17/02/2025 | |||||||||||||
| 127 | SRX23311095 | SRP484717 | Illumina NovaSeq 6000 | SRS20187424 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024946 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_259 (20PG4-2) | SAMN39503896 | 17/02/2025 | |||||||||||||
| 128 | SRX23311096 | SRP484717 | Illumina NovaSeq 6000 | SRS20187423 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024947 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_26 (21PG40-1) | SAMN39503895 | 17/02/2025 | |||||||||||||
| 129 | SRX23310860 | SRP484717 | Illumina NovaSeq 6000 | SRS20187188 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024948 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_260 (20PG4-2) | SAMN39503894 | 17/02/2025 | |||||||||||||
| 130 | SRX23310861 | SRP484717 | Illumina NovaSeq 6000 | SRS20187190 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024949 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_261 (20PG4-2) | SAMN39503893 | 17/02/2025 | |||||||||||||
| 131 | SRX23310862 | SRP484717 | Illumina NovaSeq 6000 | SRS20187189 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024950 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_262 (20PG4-2) | SAMN39503892 | 17/02/2025 | |||||||||||||
| 132 | SRX23310863 | SRP484717 | Illumina NovaSeq 6000 | SRS20187191 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024951 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_263 (20PG4-2) | SAMN39503891 | 17/02/2025 | |||||||||||||
| 133 | SRX23310864 | SRP484717 | Illumina NovaSeq 6000 | SRS20187192 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024952 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_264 (20PG4-2) | SAMN39503890 | 17/02/2025 | |||||||||||||
| 134 | SRX23310865 | SRP484717 | Illumina NovaSeq 6000 | SRS20187194 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024953 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_265 (20PG4-2) | SAMN39503889 | 17/02/2025 | |||||||||||||
| 135 | SRX23310866 | SRP484717 | Illumina NovaSeq 6000 | SRS20187193 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024954 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_266 (20PG4-2) | SAMN39503888 | 17/02/2025 | |||||||||||||
| 136 | SRX23310867 | SRP484717 | Illumina NovaSeq 6000 | SRS20187195 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024955 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_267 (20PG4-2) | SAMN39503887 | 17/02/2025 | |||||||||||||
| 137 | SRX23311040 | SRP484717 | Illumina NovaSeq 6000 | SRS20187368 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024956 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_268 (20PG4-2) | SAMN39503886 | 17/02/2025 | |||||||||||||
| 138 | SRX23311041 | SRP484717 | Illumina NovaSeq 6000 | SRS20187371 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024957 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_269 (20PG4-2) | SAMN39503885 | 17/02/2025 | |||||||||||||
| 139 | SRX23311042 | SRP484717 | Illumina NovaSeq 6000 | SRS20187369 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024958 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_27 (21PG40-1) | SAMN39503884 | 17/02/2025 | |||||||||||||
| 140 | SRX23311043 | SRP484717 | Illumina NovaSeq 6000 | SRS20187370 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024959 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_270 (20PG4-2) | SAMN39503883 | 17/02/2025 | |||||||||||||
| 141 | SRX23311044 | SRP484717 | Illumina NovaSeq 6000 | SRS20187372 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024960 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_271 (20PG4-2) | SAMN39503882 | 17/02/2025 | |||||||||||||
| 142 | SRX23311045 | SRP484717 | Illumina NovaSeq 6000 | SRS20187374 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024961 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_272 (20PG4-2) | SAMN39503881 | 17/02/2025 | |||||||||||||
| 143 | SRX23311046 | SRP484717 | Illumina NovaSeq 6000 | SRS20187373 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024962 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_273 (20PG4-2) | SAMN39503880 | 17/02/2025 | |||||||||||||
| 144 | SRX23311047 | SRP484717 | Illumina NovaSeq 6000 | SRS20187376 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024963 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_274 (20PG4-2) | SAMN39503879 | 17/02/2025 | |||||||||||||
| 145 | SRX23311432 | SRP484717 | Illumina NovaSeq 6000 | SRS20187760 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024964 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_275 (20PG4-2) | SAMN39503878 | 17/02/2025 | |||||||||||||
| 146 | SRX23311433 | SRP484717 | Illumina NovaSeq 6000 | SRS20187761 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024965 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_276 (20PG4-2) | SAMN39503877 | 17/02/2025 | |||||||||||||
| 147 | SRX23311434 | SRP484717 | Illumina NovaSeq 6000 | SRS20187762 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024966 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_277 (20PG4-2) | SAMN39503876 | 17/02/2025 | |||||||||||||
| 148 | SRX23311435 | SRP484717 | Illumina NovaSeq 6000 | SRS20187764 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024967 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_278 (20PG4-2) | SAMN39503875 | 17/02/2025 | |||||||||||||
| 149 | SRX23311436 | SRP484717 | Illumina NovaSeq 6000 | SRS20187763 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024968 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_279 (20PG4-2) | SAMN39503874 | 17/02/2025 | |||||||||||||
| 150 | SRX23311437 | SRP484717 | Illumina NovaSeq 6000 | SRS20187765 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024969 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_28 (21PG40-1) | SAMN39503873 | 17/02/2025 | |||||||||||||
| 151 | SRX23311438 | SRP484717 | Illumina NovaSeq 6000 | SRS20187769 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024970 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_280 (20PG4-2) | SAMN39503872 | 17/02/2025 | |||||||||||||
| 152 | SRX23311439 | SRP484717 | Illumina NovaSeq 6000 | SRS20187767 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024971 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_281 (20PG4-2) | SAMN39503871 | 17/02/2025 | |||||||||||||
| 153 | SRX23311097 | SRP484717 | Illumina NovaSeq 6000 | SRS20187425 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024972 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_282 (20PG4-2) | SAMN39503870 | 17/02/2025 | |||||||||||||
| 154 | SRX23311098 | SRP484717 | Illumina NovaSeq 6000 | SRS20187426 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024973 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_283 (20PG4-2) | SAMN39503869 | 17/02/2025 | |||||||||||||
| 155 | SRX23311099 | SRP484717 | Illumina NovaSeq 6000 | SRS20187427 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024974 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_284 (20PG4-2) | SAMN39503868 | 17/02/2025 | |||||||||||||
| 156 | SRX23311100 | SRP484717 | Illumina NovaSeq 6000 | SRS20187429 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024975 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_285 (20PG4-2) | SAMN39503867 | 17/02/2025 | |||||||||||||
| 157 | SRX23311101 | SRP484717 | Illumina NovaSeq 6000 | SRS20187430 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024976 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_286 (20PG4-2) | SAMN39503866 | 17/02/2025 | |||||||||||||
| 158 | SRX23311102 | SRP484717 | Illumina NovaSeq 6000 | SRS20187428 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024977 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_287 (20PG4-2) | SAMN39503865 | 17/02/2025 | |||||||||||||
| 159 | SRX23311103 | SRP484717 | Illumina NovaSeq 6000 | SRS20187431 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024978 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_288 (21PG57-1) | SAMN39503864 | 17/02/2025 | |||||||||||||
| 160 | SRX23310868 | SRP484717 | Illumina NovaSeq 6000 | SRS20187197 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024980 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_29 (21PG40-1) | SAMN39503862 | 17/02/2025 | |||||||||||||
| 161 | SRX23310869 | SRP484717 | Illumina NovaSeq 6000 | SRS20187196 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024981 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_290 (20PG4-1) | SAMN39503861 | 17/02/2025 | |||||||||||||
| 162 | SRX23310870 | SRP484717 | Illumina NovaSeq 6000 | SRS20187198 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024982 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_291 (20PG4-1) | SAMN39503860 | 17/02/2025 | |||||||||||||
| 163 | SRX23310871 | SRP484717 | Illumina NovaSeq 6000 | SRS20187199 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024983 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_292 (20PG4-1) | SAMN39503859 | 17/02/2025 | |||||||||||||
| 164 | SRX23310872 | SRP484717 | Illumina NovaSeq 6000 | SRS20187202 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024984 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_293 (20PG4-1) | SAMN39503858 | 17/02/2025 | |||||||||||||
| 165 | SRX23310873 | SRP484717 | Illumina NovaSeq 6000 | SRS20187200 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024985 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_294 (20PG4-1) | SAMN39503857 | 17/02/2025 | |||||||||||||
| 166 | SRX23310874 | SRP484717 | Illumina NovaSeq 6000 | SRS20187201 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024986 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_295 (20PG4-1) | SAMN39503856 | 17/02/2025 | |||||||||||||
| 167 | SRX23310875 | SRP484717 | Illumina NovaSeq 6000 | SRS20187203 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024987 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_296 (20PG4-1) | SAMN39503855 | 17/02/2025 | |||||||||||||
| 168 | SRX23311048 | SRP484717 | Illumina NovaSeq 6000 | SRS20187375 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024988 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_297 (20PG4-1) | SAMN39503854 | 17/02/2025 | |||||||||||||
| 169 | SRX23311049 | SRP484717 | Illumina NovaSeq 6000 | SRS20187377 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024989 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_298 (20PG4-1) | SAMN39503853 | 17/02/2025 | |||||||||||||
| 170 | SRX23311050 | SRP484717 | Illumina NovaSeq 6000 | SRS20187378 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024990 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_299 (20PG4-1) | SAMN39503852 | 17/02/2025 | |||||||||||||
| 171 | SRX23311051 | SRP484717 | Illumina NovaSeq 6000 | SRS20187379 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024991 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_3 (21PG50-2) | SAMN39503851 | 17/02/2025 | |||||||||||||
| 172 | SRX23311052 | SRP484717 | Illumina NovaSeq 6000 | SRS20187380 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024992 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_30 (21PG40-1) | SAMN39503850 | 17/02/2025 | |||||||||||||
| 173 | SRX23311053 | SRP484717 | Illumina NovaSeq 6000 | SRS20187381 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024993 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_300 (20PG4-1) | SAMN39503849 | 17/02/2025 | |||||||||||||
| 174 | SRX23311054 | SRP484717 | Illumina NovaSeq 6000 | SRS20187382 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024994 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_301 (20PG4-1) | SAMN39503848 | 17/02/2025 | |||||||||||||
| 175 | SRX23311055 | SRP484717 | Illumina NovaSeq 6000 | SRS20187383 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024995 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_302 (20PG4-1) | SAMN39503847 | 17/02/2025 | |||||||||||||
| 176 | SRX23311441 | SRP484717 | Illumina NovaSeq 6000 | SRS20187768 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024997 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_304 (20PG4-1) | SAMN39503845 | 17/02/2025 | |||||||||||||
| 177 | SRX23311442 | SRP484717 | Illumina NovaSeq 6000 | SRS20187772 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024998 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_305 (20PG4-1) | SAMN39503844 | 17/02/2025 | |||||||||||||
| 178 | SRX23311443 | SRP484717 | Illumina NovaSeq 6000 | SRS20187770 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024999 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_306 (20PG4-1) | SAMN39503843 | 17/02/2025 | |||||||||||||
| 179 | SRX23311444 | SRP484717 | Illumina NovaSeq 6000 | SRS20187771 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025000 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_307 (20PG4-1) | SAMN39503842 | 17/02/2025 | |||||||||||||
| 180 | SRX23311446 | SRP484717 | Illumina NovaSeq 6000 | SRS20187774 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025002 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_309 (20PG4-1) | SAMN39503840 | 17/02/2025 | |||||||||||||
| 181 | SRX23311447 | SRP484717 | Illumina NovaSeq 6000 | SRS20187775 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025003 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_31 (21PG40-1) | SAMN39503839 | 17/02/2025 | |||||||||||||
| 182 | SRX23311106 | SRP484717 | Illumina NovaSeq 6000 | SRS20187435 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025005 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_311 (20PG4-1) | SAMN39503837 | 17/02/2025 | |||||||||||||
| 183 | SRX23311109 | SRP484717 | Illumina NovaSeq 6000 | SRS20187437 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025008 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_314 (21PG75-1) | SAMN39503834 | 17/02/2025 | |||||||||||||
| 184 | SRX23311110 | SRP484717 | Illumina NovaSeq 6000 | SRS20187436 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025009 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_315 (21PG75-1) | SAMN39503833 | 17/02/2025 | |||||||||||||
| 185 | SRX23311111 | SRP484717 | Illumina NovaSeq 6000 | SRS20187440 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025010 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_316 (21PG75-1) | SAMN39503832 | 17/02/2025 | |||||||||||||
| 186 | SRX23310877 | SRP484717 | Illumina NovaSeq 6000 | SRS20187204 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025013 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_319 (21PG75-1) | SAMN39503829 | 17/02/2025 | |||||||||||||
| 187 | SRX23310878 | SRP484717 | Illumina NovaSeq 6000 | SRS20187206 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025014 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_32 (21PG40-1) | SAMN39503828 | 17/02/2025 | |||||||||||||
| 188 | SRX23310879 | SRP484717 | Illumina NovaSeq 6000 | SRS20187207 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025015 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_320 (21PG75-1) | SAMN39503827 | 17/02/2025 | |||||||||||||
| 189 | SRX23310880 | SRP484717 | Illumina NovaSeq 6000 | SRS20187208 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025016 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_321 (21PG75-1) | SAMN39503826 | 17/02/2025 | |||||||||||||
| 190 | SRX23310881 | SRP484717 | Illumina NovaSeq 6000 | SRS20187209 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025017 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_322 (21PG75-1) | SAMN39503825 | 17/02/2025 | |||||||||||||
| 191 | SRX23310882 | SRP484717 | Illumina NovaSeq 6000 | SRS20187212 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025018 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_323 (21PG75-1) | SAMN39503824 | 17/02/2025 | |||||||||||||
| 192 | SRX23310883 | SRP484717 | Illumina NovaSeq 6000 | SRS20187211 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025019 | Late blastocyst: E6 | TE: polar | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_324 (21PG75-1) | SAMN39503823 | 17/02/2025 | |||||||||||||
| 193 | SRX23311056 | SRP484717 | Illumina NovaSeq 6000 | SRS20187384 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025020 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_325 (21PG75-1) | SAMN39503822 | 17/02/2025 | |||||||||||||
| 194 | SRX23311057 | SRP484717 | Illumina NovaSeq 6000 | SRS20187386 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025021 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_326 (21PG75-1) | SAMN39503821 | 17/02/2025 | |||||||||||||
| 195 | SRX23311059 | SRP484717 | Illumina NovaSeq 6000 | SRS20187385 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025023 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_328 (21PG75-1) | SAMN39503819 | 17/02/2025 | |||||||||||||
| 196 | SRX23311060 | SRP484717 | Illumina NovaSeq 6000 | SRS20187389 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025024 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_329 (21PG75-1) | SAMN39503818 | 17/02/2025 | |||||||||||||
| 197 | SRX23311061 | SRP484717 | Illumina NovaSeq 6000 | SRS20187390 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025025 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_33 (21PG40-1) | SAMN39503817 | 17/02/2025 | |||||||||||||
| 198 | SRX23311062 | SRP484717 | Illumina NovaSeq 6000 | SRS20187388 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025026 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_330 (21PG75-1) | SAMN39503816 | 17/02/2025 | |||||||||||||
| 199 | SRX23311063 | SRP484717 | Illumina NovaSeq 6000 | SRS20187391 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025027 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_331 (21PG75-1) | SAMN39503815 | 17/02/2025 | |||||||||||||
| 200 | SRX23311448 | SRP484717 | Illumina NovaSeq 6000 | SRS20187776 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025028 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_332 (21PG75-1) | SAMN39503814 | 17/02/2025 | |||||||||||||
| 201 | SRX23311449 | SRP484717 | Illumina NovaSeq 6000 | SRS20187777 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025029 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_333 (21PG75-1) | SAMN39503813 | 17/02/2025 | |||||||||||||
| 202 | SRX23311450 | SRP484717 | Illumina NovaSeq 6000 | SRS20187778 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025030 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_334 (21PG75-1) | SAMN39503812 | 17/02/2025 | |||||||||||||
| 203 | SRX23311451 | SRP484717 | Illumina NovaSeq 6000 | SRS20187780 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025031 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_335 (21PG52-2) | SAMN39503811 | 17/02/2025 | |||||||||||||
| 204 | SRX23311452 | SRP484717 | Illumina NovaSeq 6000 | SRS20187779 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025032 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_336 (21PG52-2) | SAMN39503810 | 17/02/2025 | |||||||||||||
| 205 | SRX23311453 | SRP484717 | Illumina NovaSeq 6000 | SRS20187781 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025033 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_337 (21PG52-2) | SAMN39503809 | 17/02/2025 | |||||||||||||
| 206 | SRX23311454 | SRP484717 | Illumina NovaSeq 6000 | SRS20187782 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025034 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_338 (21PG52-2) | SAMN39503808 | 17/02/2025 | |||||||||||||
| 207 | SRX23311113 | SRP484717 | Illumina NovaSeq 6000 | SRS20187442 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025036 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_34 (21PG40-1) | SAMN39503806 | 17/02/2025 | |||||||||||||
| 208 | SRX23311114 | SRP484717 | Illumina NovaSeq 6000 | SRS20187441 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025037 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_340 (21PG52-2) | SAMN39503805 | 17/02/2025 | |||||||||||||
| 209 | SRX23311115 | SRP484717 | Illumina NovaSeq 6000 | SRS20187443 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025038 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_341 (21PG52-2) | SAMN39503804 | 17/02/2025 | |||||||||||||
| 210 | SRX23311116 | SRP484717 | Illumina NovaSeq 6000 | SRS20187444 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025039 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_342 (21PG52-2) | SAMN39503803 | 17/02/2025 | |||||||||||||
| 211 | SRX23311117 | SRP484717 | Illumina NovaSeq 6000 | SRS20187446 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025040 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_343 (21PG52-2) | SAMN39503802 | 17/02/2025 | |||||||||||||
| 212 | SRX23311118 | SRP484717 | Illumina NovaSeq 6000 | SRS20187445 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025041 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_344 (21PG52-2) | SAMN39503801 | 17/02/2025 | |||||||||||||
| 213 | SRX23311119 | SRP484717 | Illumina NovaSeq 6000 | SRS20187447 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025042 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_345 (21PG52-2) | SAMN39503800 | 17/02/2025 | |||||||||||||
| 214 | SRX23311120 | SRP484717 | Illumina NovaSeq 6000 | SRS20187448 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025043 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_346 (21PG52-2) | SAMN39503799 | 17/02/2025 | |||||||||||||
| 215 | SRX23310884 | SRP484717 | Illumina NovaSeq 6000 | SRS20187210 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025044 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_347 (21PG52-2) | SAMN39503798 | 17/02/2025 | |||||||||||||
| 216 | SRX23310885 | SRP484717 | Illumina NovaSeq 6000 | SRS20187213 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025045 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_348 (21PG52-2) | SAMN39503797 | 17/02/2025 | |||||||||||||
| 217 | SRX23310886 | SRP484717 | Illumina NovaSeq 6000 | SRS20187215 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025046 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_349 (21PG52-2) | SAMN39503796 | 17/02/2025 | |||||||||||||
| 218 | SRX23310887 | SRP484717 | Illumina NovaSeq 6000 | SRS20187214 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025047 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_35 (21PG40-1) | SAMN39503795 | 17/02/2025 | |||||||||||||
| 219 | SRX23310889 | SRP484717 | Illumina NovaSeq 6000 | SRS20187217 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025049 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_351 (21PG52-2) | SAMN39503793 | 17/02/2025 | |||||||||||||
| 220 | SRX23310890 | SRP484717 | Illumina NovaSeq 6000 | SRS20187218 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025050 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_352 (21PG52-2) | SAMN39503792 | 17/02/2025 | |||||||||||||
| 221 | SRX23310891 | SRP484717 | Illumina NovaSeq 6000 | SRS20187219 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025051 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_353 (21PG41-1) | SAMN39503791 | 17/02/2025 | |||||||||||||
| 222 | SRX23311064 | SRP484717 | Illumina NovaSeq 6000 | SRS20187392 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025052 | 16-32 cell: E4.75 | Prelineage: Morula | 16-32 cell: E4.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_354 (21PG41-1) | SAMN39503790 | 17/02/2025 | |||||||||||||
| 223 | SRX23311065 | SRP484717 | Illumina NovaSeq 6000 | SRS20187393 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025053 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_355 (21PG41-1) | SAMN39503789 | 17/02/2025 | |||||||||||||
| 224 | SRX23311066 | SRP484717 | Illumina NovaSeq 6000 | SRS20187395 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025054 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_356 (21PG41-1) | SAMN39503788 | 17/02/2025 | |||||||||||||
| 225 | SRX23311067 | SRP484717 | Illumina NovaSeq 6000 | SRS20187396 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025055 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_357 (21PG41-1) | SAMN39503787 | 17/02/2025 | |||||||||||||
| 226 | SRX23311068 | SRP484717 | Illumina NovaSeq 6000 | SRS20187394 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025056 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_358 (21PG41-1) | SAMN39503786 | 17/02/2025 | |||||||||||||
| 227 | SRX23311069 | SRP484717 | Illumina NovaSeq 6000 | SRS20187397 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025057 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_359 (21PG41-1) | SAMN39503785 | 17/02/2025 | |||||||||||||
| 228 | SRX23311070 | SRP484717 | Illumina NovaSeq 6000 | SRS20187398 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025058 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_36 (21PG40-1) | SAMN39503784 | 17/02/2025 | |||||||||||||
| 229 | SRX23311071 | SRP484717 | Illumina NovaSeq 6000 | SRS20187399 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025059 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_360 (21PG41-1) | SAMN39503783 | 17/02/2025 | |||||||||||||
| 230 | SRX23311458 | SRP484717 | Illumina NovaSeq 6000 | SRS20187786 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025062 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_37 (21PG40-1) | SAMN39503780 | 17/02/2025 | |||||||||||||
| 231 | SRX23311459 | SRP484717 | Illumina NovaSeq 6000 | SRS20187787 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025063 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_38 (21PG40-1) | SAMN39503779 | 17/02/2025 | |||||||||||||
| 232 | SRX23311460 | SRP484717 | Illumina NovaSeq 6000 | SRS20187788 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025064 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_39 (21PG40-1) | SAMN39503778 | 17/02/2025 | |||||||||||||
| 233 | SRX23311461 | SRP484717 | Illumina NovaSeq 6000 | SRS20187789 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025065 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_4 (21PG50-2) | SAMN39503777 | 17/02/2025 | |||||||||||||
| 234 | SRX23311462 | SRP484717 | Illumina NovaSeq 6000 | SRS20187791 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025066 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_40 (21PG40-1) | SAMN39503776 | 17/02/2025 | |||||||||||||
| 235 | SRX23311463 | SRP484717 | Illumina NovaSeq 6000 | SRS20187790 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025067 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_41 (21PG40-1) | SAMN39503775 | 17/02/2025 | |||||||||||||
| 236 | SRX23311121 | SRP484717 | Illumina NovaSeq 6000 | SRS20187449 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025068 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_42 (21PG40-1) | SAMN39503774 | 17/02/2025 | |||||||||||||
| 237 | SRX23311122 | SRP484717 | Illumina NovaSeq 6000 | SRS20187450 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025069 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_43 (21PG51-2) | SAMN39503773 | 17/02/2025 | |||||||||||||
| 238 | SRX23311123 | SRP484717 | Illumina NovaSeq 6000 | SRS20187452 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025070 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_44 (21PG51-2) | SAMN39503772 | 17/02/2025 | |||||||||||||
| 239 | SRX23311124 | SRP484717 | Illumina NovaSeq 6000 | SRS20187451 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025071 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_45 (21PG51-2) | SAMN39503771 | 17/02/2025 | |||||||||||||
| 240 | SRX23311125 | SRP484717 | Illumina NovaSeq 6000 | SRS20187453 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025072 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_46 (21PG51-2) | SAMN39503770 | 17/02/2025 | |||||||||||||
| 241 | SRX23311126 | SRP484717 | Illumina NovaSeq 6000 | SRS20187455 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025073 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_47 (21PG51-2) | SAMN39503769 | 17/02/2025 | |||||||||||||
| 242 | SRX23311127 | SRP484717 | Illumina NovaSeq 6000 | SRS20187454 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025074 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_48 (21PG51-2) | SAMN39503768 | 17/02/2025 | |||||||||||||
| 243 | SRX23311128 | SRP484717 | Illumina NovaSeq 6000 | SRS20187456 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025075 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_49 (21PG51-2) | SAMN39503767 | 17/02/2025 | |||||||||||||
| 244 | SRX23310892 | SRP484717 | Illumina NovaSeq 6000 | SRS20187220 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025076 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_5 (21PG50-2) | SAMN39503766 | 17/02/2025 | |||||||||||||
| 245 | SRX23310893 | SRP484717 | Illumina NovaSeq 6000 | SRS20187221 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025077 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_50 (21PG51-2) | SAMN39503765 | 17/02/2025 | |||||||||||||
| 246 | SRX23310894 | SRP484717 | Illumina NovaSeq 6000 | SRS20187222 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025078 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_51 (21PG51-2) | SAMN39503764 | 17/02/2025 | |||||||||||||
| 247 | SRX23310895 | SRP484717 | Illumina NovaSeq 6000 | SRS20187224 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025079 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_52 (21PG51-2) | SAMN39503763 | 17/02/2025 | |||||||||||||
| 248 | SRX23310896 | SRP484717 | Illumina NovaSeq 6000 | SRS20187223 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025080 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_53 (21PG51-2) | SAMN39503762 | 17/02/2025 | |||||||||||||
| 249 | SRX23310897 | SRP484717 | Illumina NovaSeq 6000 | SRS20187226 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025081 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_54 (21PG51-2) | SAMN39503761 | 17/02/2025 | |||||||||||||
| 250 | SRX23310898 | SRP484717 | Illumina NovaSeq 6000 | SRS20187225 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025082 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_55 (21PG51-2) | SAMN39503760 | 17/02/2025 | |||||||||||||
| 251 | SRX23310899 | SRP484717 | Illumina NovaSeq 6000 | SRS20187227 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025083 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_56 (21PG51-2) | SAMN39503759 | 17/02/2025 | |||||||||||||
| 252 | SRX23311072 | SRP484717 | Illumina NovaSeq 6000 | SRS20187401 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025084 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_57 (21PG51-2) | SAMN39503758 | 17/02/2025 | |||||||||||||
| 253 | SRX23311073 | SRP484717 | Illumina NovaSeq 6000 | SRS20187402 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025085 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_58 (21PG51-2) | SAMN39503757 | 17/02/2025 | |||||||||||||
| 254 | SRX23311074 | SRP484717 | Illumina NovaSeq 6000 | SRS20187400 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025086 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_59 (21PG51-2) | SAMN39503756 | 17/02/2025 | |||||||||||||
| 255 | SRX23311075 | SRP484717 | Illumina NovaSeq 6000 | SRS20187403 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025087 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_6 (21PG50-2) | SAMN39503755 | 17/02/2025 | |||||||||||||
| 256 | SRX23311076 | SRP484717 | Illumina NovaSeq 6000 | SRS20187405 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025088 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_60 (21PG51-2) | SAMN39503754 | 17/02/2025 | |||||||||||||
| 257 | SRX23311077 | SRP484717 | Illumina NovaSeq 6000 | SRS20187404 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025089 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_61 (21PG51-2) | SAMN39503753 | 17/02/2025 | |||||||||||||
| 258 | SRX23311078 | SRP484717 | Illumina NovaSeq 6000 | SRS20187406 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025090 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_62 (21PG51-3) | SAMN39503752 | 17/02/2025 | |||||||||||||
| 259 | SRX23311079 | SRP484717 | Illumina NovaSeq 6000 | SRS20187408 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025091 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_63 (21PG51-3) | SAMN39503751 | 17/02/2025 | |||||||||||||
| 260 | SRX23311464 | SRP484717 | Illumina NovaSeq 6000 | SRS20187792 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025092 | Early blastocyst: E4.5 | ICM: PE | Early blastocyst: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_64 (21PG51-3) | SAMN39503750 | 17/02/2025 | |||||||||||||
| 261 | SRX23311465 | SRP484717 | Illumina NovaSeq 6000 | SRS20187793 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025093 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_65 (21PG51-3) | SAMN39503749 | 17/02/2025 | |||||||||||||
| 262 | SRX23311466 | SRP484717 | Illumina NovaSeq 6000 | SRS20187794 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025094 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_66 (21PG51-3) | SAMN39503748 | 17/02/2025 | |||||||||||||
| 263 | SRX23311467 | SRP484717 | Illumina NovaSeq 6000 | SRS20187797 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025095 | Early blastocyst: E4.5 | ICM: ICM | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_67 (21PG51-3) | SAMN39503747 | 17/02/2025 | |||||||||||||
| 264 | SRX23311468 | SRP484717 | Illumina NovaSeq 6000 | SRS20187795 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025096 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_68 (21PG51-3) | SAMN39503746 | 17/02/2025 | |||||||||||||
| 265 | SRX23311469 | SRP484717 | Illumina NovaSeq 6000 | SRS20187796 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025097 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_69 (21PG51-3) | SAMN39503745 | 17/02/2025 | |||||||||||||
| 266 | SRX23311470 | SRP484717 | Illumina NovaSeq 6000 | SRS20187798 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025098 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_7 (21PG50-2) | SAMN39503744 | 17/02/2025 | |||||||||||||
| 267 | SRX23311471 | SRP484717 | Illumina NovaSeq 6000 | SRS20187799 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025099 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_70 (21PG51-3) | SAMN39503743 | 17/02/2025 | |||||||||||||
| 268 | SRX23311129 | SRP484717 | Illumina NovaSeq 6000 | SRS20187457 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025100 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_71 (21PG51-3) | SAMN39503742 | 17/02/2025 | |||||||||||||
| 269 | SRX23311130 | SRP484717 | Illumina NovaSeq 6000 | SRS20187458 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025101 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_72 (21PG51-3) | SAMN39503741 | 17/02/2025 | |||||||||||||
| 270 | SRX23311131 | SRP484717 | Illumina NovaSeq 6000 | SRS20187459 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025102 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_73 (21PG51-3) | SAMN39503740 | 17/02/2025 | |||||||||||||
| 271 | SRX23311132 | SRP484717 | Illumina NovaSeq 6000 | SRS20187461 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025103 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_74 (21PG76-1) | SAMN39503739 | 17/02/2025 | |||||||||||||
| 272 | SRX23311133 | SRP484717 | Illumina NovaSeq 6000 | SRS20187460 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025104 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_75 (21PG76-1) | SAMN39503738 | 17/02/2025 | |||||||||||||
| 273 | SRX23311134 | SRP484717 | Illumina NovaSeq 6000 | SRS20187462 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025105 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_76 (21PG76-1) | SAMN39503737 | 17/02/2025 | |||||||||||||
| 274 | SRX23310901 | SRP484717 | Illumina NovaSeq 6000 | SRS20187229 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025109 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_1_8 (21PG50-2) | SAMN39503733 | 17/02/2025 | |||||||||||||
| 275 | SRX23310902 | SRP484717 | Illumina NovaSeq 6000 | SRS20187230 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025110 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_80 (21PG76-2) | SAMN39503732 | 17/02/2025 | |||||||||||||
| 276 | SRX23311082 | SRP484717 | Illumina NovaSeq 6000 | SRS20187410 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025118 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_88 (21PG76-2) | SAMN39503724 | 17/02/2025 | |||||||||||||
| 277 | SRX23311083 | SRP484717 | Illumina NovaSeq 6000 | SRS20187412 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025119 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_1_89 (21PG76-2) | SAMN39503723 | 17/02/2025 | |||||||||||||
| 278 | SRX23311084 | SRP484717 | Illumina NovaSeq 6000 | SRS20187413 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025120 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_9 (21PG39-1) | SAMN39503722 | 17/02/2025 | |||||||||||||
| 279 | SRX23311085 | SRP484717 | Illumina NovaSeq 6000 | SRS20187414 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025121 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_1_90 (21PG76-2) | SAMN39503721 | 17/02/2025 | |||||||||||||
| 280 | SRX23311472 | SRP484717 | Illumina NovaSeq 6000 | SRS20187800 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025124 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_93 (21PG76-2) | SAMN39503718 | 17/02/2025 | |||||||||||||
| 281 | SRX23311473 | SRP484717 | Illumina NovaSeq 6000 | SRS20187803 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025125 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_94 (21PG76-2) | SAMN39503717 | 17/02/2025 | |||||||||||||
| 282 | SRX23311475 | SRP484717 | Illumina NovaSeq 6000 | SRS20187804 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025127 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_96 (21PG76-2) | SAMN39503715 | 17/02/2025 | |||||||||||||
| 283 | SRX23311476 | SRP484717 | Illumina NovaSeq 6000 | SRS20187802 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025128 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_97 (21PG55-2) | SAMN39503714 | 17/02/2025 | |||||||||||||
| 284 | SRX23311477 | SRP484717 | Illumina NovaSeq 6000 | SRS20187805 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025129 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_98 (21PG55-2) | SAMN39503713 | 17/02/2025 | |||||||||||||
| 285 | SRX23311478 | SRP484717 | Illumina NovaSeq 6000 | SRS20187806 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025130 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_1_99 (21PG55-2) | SAMN39503712 | 17/02/2025 | |||||||||||||
| 286 | SRX23311479 | SRP484717 | Illumina NovaSeq 6000 | SRS20187808 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025131 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_2_1 (21PG50-3) | SAMN39503711 | 17/02/2025 | |||||||||||||
| 287 | SRX23311137 | SRP484717 | Illumina NovaSeq 6000 | SRS20187463 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025132 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_10 (21PG77-1) | SAMN39503710 | 17/02/2025 | |||||||||||||
| 288 | SRX23311138 | SRP484717 | Illumina NovaSeq 6000 | SRS20187466 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025133 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_100 (21PG55-3) | SAMN39503709 | 17/02/2025 | |||||||||||||
| 289 | SRX23311139 | SRP484717 | Illumina NovaSeq 6000 | SRS20187467 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025134 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_101 (21PG55-3) | SAMN39503708 | 17/02/2025 | |||||||||||||
| 290 | SRX23311140 | SRP484717 | Illumina NovaSeq 6000 | SRS20187469 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025135 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_102 (21PG55-3) | SAMN39503707 | 17/02/2025 | |||||||||||||
| 291 | SRX23311141 | SRP484717 | Illumina NovaSeq 6000 | SRS20187470 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025136 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_103 (21PG55-3) | SAMN39503706 | 17/02/2025 | |||||||||||||
| 292 | SRX23311142 | SRP484717 | Illumina NovaSeq 6000 | SRS20187468 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025137 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_104 (21PG55-3) | SAMN39503705 | 17/02/2025 | |||||||||||||
| 293 | SRX23311143 | SRP484717 | Illumina NovaSeq 6000 | SRS20187472 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025138 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_105 (21PG55-3) | SAMN39503704 | 17/02/2025 | |||||||||||||
| 294 | SRX23311144 | SRP484717 | Illumina NovaSeq 6000 | SRS20187471 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025139 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_106 (21PG55-3) | SAMN39503703 | 17/02/2025 | |||||||||||||
| 295 | SRX23310908 | SRP484717 | Illumina NovaSeq 6000 | SRS20187237 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025140 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_107 (21PG55-3) | SAMN39503702 | 17/02/2025 | |||||||||||||
| 296 | SRX23310909 | SRP484717 | Illumina NovaSeq 6000 | SRS20187236 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025141 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_108 (21PG55-3) | SAMN39503701 | 17/02/2025 | |||||||||||||
| 297 | SRX23310910 | SRP484717 | Illumina NovaSeq 6000 | SRS20187238 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025142 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_109 (21PG55-3) | SAMN39503700 | 17/02/2025 | |||||||||||||
| 298 | SRX23310911 | SRP484717 | Illumina NovaSeq 6000 | SRS20187239 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025143 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_11 (21PG77-1) | SAMN39503699 | 17/02/2025 | |||||||||||||
| 299 | SRX23311312 | SRP484717 | Illumina NovaSeq 6000 | SRS20187640 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025144 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_110 (21PG55-3) | SAMN39503698 | 17/02/2025 | |||||||||||||
| 300 | SRX23311313 | SRP484717 | Illumina NovaSeq 6000 | SRS20187641 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025145 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_111 (21PG55-3) | SAMN39503697 | 17/02/2025 | |||||||||||||
| 301 | SRX23311314 | SRP484717 | Illumina NovaSeq 6000 | SRS20187643 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025146 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_112 (21PG55-3) | SAMN39503696 | 17/02/2025 | |||||||||||||
| 302 | SRX23311175 | SRP484717 | Illumina NovaSeq 6000 | SRS20187504 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025148 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_114 (21PG55-3) | SAMN39503694 | 17/02/2025 | |||||||||||||
| 303 | SRX23311176 | SRP484717 | Illumina NovaSeq 6000 | SRS20187503 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025149 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_115 (21PG55-3) | SAMN39503693 | 17/02/2025 | |||||||||||||
| 304 | SRX23311177 | SRP484717 | Illumina NovaSeq 6000 | SRS20187505 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025150 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_116 (21PG49-1) | SAMN39503692 | 17/02/2025 | |||||||||||||
| 305 | SRX23311178 | SRP484717 | Illumina NovaSeq 6000 | SRS20187506 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025151 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_117 (21PG49-1) | SAMN39503691 | 17/02/2025 | |||||||||||||
| 306 | SRX23311179 | SRP484717 | Illumina NovaSeq 6000 | SRS20187507 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025152 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_118 (21PG49-1) | SAMN39503690 | 17/02/2025 | |||||||||||||
| 307 | SRX23311180 | SRP484717 | Illumina NovaSeq 6000 | SRS20187508 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025153 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_119 (21PG49-1) | SAMN39503689 | 17/02/2025 | |||||||||||||
| 308 | SRX23311181 | SRP484717 | Illumina NovaSeq 6000 | SRS20187509 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025154 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_12 (21PG77-1) | SAMN39503688 | 17/02/2025 | |||||||||||||
| 309 | SRX23311182 | SRP484717 | Illumina NovaSeq 6000 | SRS20187510 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025155 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_120 (21PG49-1) | SAMN39503687 | 17/02/2025 | |||||||||||||
| 310 | SRX23311480 | SRP484717 | Illumina NovaSeq 6000 | SRS20187807 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025156 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_121 (21PG49-1) | SAMN39503686 | 17/02/2025 | |||||||||||||
| 311 | SRX23311481 | SRP484717 | Illumina NovaSeq 6000 | SRS20187809 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025157 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_122 (21PG49-1) | SAMN39503685 | 17/02/2025 | |||||||||||||
| 312 | SRX23311483 | SRP484717 | Illumina NovaSeq 6000 | SRS20187811 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025159 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_124 (21PG49-1) | SAMN39503683 | 17/02/2025 | |||||||||||||
| 313 | SRX23311484 | SRP484717 | Illumina NovaSeq 6000 | SRS20187812 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025160 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_125 (21PG49-1) | SAMN39503682 | 17/02/2025 | |||||||||||||
| 314 | SRX23311485 | SRP484717 | Illumina NovaSeq 6000 | SRS20187813 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025161 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_126 (21PG49-1) | SAMN39503681 | 17/02/2025 | |||||||||||||
| 315 | SRX23310912 | SRP484717 | Illumina NovaSeq 6000 | SRS20187240 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025162 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_127 (21PG49-1) | SAMN39503680 | 17/02/2025 | |||||||||||||
| 316 | SRX23310913 | SRP484717 | Illumina NovaSeq 6000 | SRS20187241 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025163 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_128 (21PG49-1) | SAMN39503679 | 17/02/2025 | |||||||||||||
| 317 | SRX23311146 | SRP484717 | Illumina NovaSeq 6000 | SRS20187474 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025165 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_13 (21PG77-1) | SAMN39503677 | 17/02/2025 | |||||||||||||
| 318 | SRX23311148 | SRP484717 | Illumina NovaSeq 6000 | SRS20187475 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025167 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_131 (21PG49-2) | SAMN39503675 | 17/02/2025 | |||||||||||||
| 319 | SRX23311149 | SRP484717 | Illumina NovaSeq 6000 | SRS20187480 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025168 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_132 (21PG49-2) | SAMN39503674 | 17/02/2025 | |||||||||||||
| 320 | SRX23311150 | SRP484717 | Illumina NovaSeq 6000 | SRS20187479 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025169 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_133 (21PG49-2) | SAMN39503673 | 17/02/2025 | |||||||||||||
| 321 | SRX23311151 | SRP484717 | Illumina NovaSeq 6000 | SRS20187477 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025170 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_134 (21PG49-2) | SAMN39503672 | 17/02/2025 | |||||||||||||
| 322 | SRX23311152 | SRP484717 | Illumina NovaSeq 6000 | SRS20187478 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025171 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_135 (21PG49-2) | SAMN39503671 | 17/02/2025 | |||||||||||||
| 323 | SRX23311316 | SRP484717 | Illumina NovaSeq 6000 | SRS20187642 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025172 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_136 (21PG49-2) | SAMN39503670 | 17/02/2025 | |||||||||||||
| 324 | SRX23311317 | SRP484717 | Illumina NovaSeq 6000 | SRS20187645 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025173 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_137 (21PG49-2) | SAMN39503669 | 17/02/2025 | |||||||||||||
| 325 | SRX23311318 | SRP484717 | Illumina NovaSeq 6000 | SRS20187646 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025174 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_138 (21PG49-2) | SAMN39503668 | 17/02/2025 | |||||||||||||
| 326 | SRX23311319 | SRP484717 | Illumina NovaSeq 6000 | SRS20187648 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025175 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_139 (21PG49-2) | SAMN39503667 | 17/02/2025 | |||||||||||||
| 327 | SRX23311320 | SRP484717 | Illumina NovaSeq 6000 | SRS20187647 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025176 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_14 (21PG77-1) | SAMN39503666 | 17/02/2025 | |||||||||||||
| 328 | SRX23311321 | SRP484717 | Illumina NovaSeq 6000 | SRS20187649 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025177 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_140 (21PG49-2) | SAMN39503665 | 17/02/2025 | |||||||||||||
| 329 | SRX23311322 | SRP484717 | Illumina NovaSeq 6000 | SRS20187650 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025178 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_141 (21PG53-2) | SAMN39503664 | 17/02/2025 | |||||||||||||
| 330 | SRX23311323 | SRP484717 | Illumina NovaSeq 6000 | SRS20187652 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025179 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_142 (21PG53-2) | SAMN39503663 | 17/02/2025 | |||||||||||||
| 331 | SRX23311183 | SRP484717 | Illumina NovaSeq 6000 | SRS20187511 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025180 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_143 (21PG53-2) | SAMN39503662 | 17/02/2025 | |||||||||||||
| 332 | SRX23311184 | SRP484717 | Illumina NovaSeq 6000 | SRS20187512 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025181 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_144 (21PG53-2) | SAMN39503661 | 17/02/2025 | |||||||||||||
| 333 | SRX23311185 | SRP484717 | Illumina NovaSeq 6000 | SRS20187514 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025182 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_145 (21PG53-2) | SAMN39503660 | 17/02/2025 | |||||||||||||
| 334 | SRX23311186 | SRP484717 | Illumina NovaSeq 6000 | SRS20187513 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025183 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_146 (21PG53-2) | SAMN39503659 | 17/02/2025 | |||||||||||||
| 335 | SRX23311187 | SRP484717 | Illumina NovaSeq 6000 | SRS20187518 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025184 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_147 (21PG53-2) | SAMN39503658 | 17/02/2025 | |||||||||||||
| 336 | SRX23311188 | SRP484717 | Illumina NovaSeq 6000 | SRS20187515 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025185 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_148 (21PG53-2) | SAMN39503657 | 17/02/2025 | |||||||||||||
| 337 | SRX23311189 | SRP484717 | Illumina NovaSeq 6000 | SRS20187516 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025186 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_149 (21PG53-2) | SAMN39503656 | 17/02/2025 | |||||||||||||
| 338 | SRX23311190 | SRP484717 | Illumina NovaSeq 6000 | SRS20187519 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025187 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_15 (21PG77-1) | SAMN39503655 | 17/02/2025 | |||||||||||||
| 339 | SRX23310914 | SRP484717 | Illumina NovaSeq 6000 | SRS20187242 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025188 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_150 (21PG53-2) | SAMN39503654 | 17/02/2025 | |||||||||||||
| 340 | SRX23310915 | SRP484717 | Illumina NovaSeq 6000 | SRS20187243 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025189 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_151 (21PG53-2) | SAMN39503653 | 17/02/2025 | |||||||||||||
| 341 | SRX23310916 | SRP484717 | Illumina NovaSeq 6000 | SRS20187244 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025190 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_152 (21PG53-2) | SAMN39503652 | 17/02/2025 | |||||||||||||
| 342 | SRX23310917 | SRP484717 | Illumina NovaSeq 6000 | SRS20187245 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025191 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_153 (21PG53-2) | SAMN39503651 | 17/02/2025 | |||||||||||||
| 343 | SRX23310918 | SRP484717 | Illumina NovaSeq 6000 | SRS20187246 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025192 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_154 (21PG53-2) | SAMN39503650 | 17/02/2025 | |||||||||||||
| 344 | SRX23310919 | SRP484717 | Illumina NovaSeq 6000 | SRS20187247 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025193 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_155 (21PG53-2) | SAMN39503649 | 17/02/2025 | |||||||||||||
| 345 | SRX23310920 | SRP484717 | Illumina NovaSeq 6000 | SRS20187248 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025194 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_156 (21PG53-2) | SAMN39503648 | 17/02/2025 | |||||||||||||
| 346 | SRX23310921 | SRP484717 | Illumina NovaSeq 6000 | SRS20187249 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025195 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_157 (21PG53-2) | SAMN39503647 | 17/02/2025 | |||||||||||||
| 347 | SRX23311153 | SRP484717 | Illumina NovaSeq 6000 | SRS20187481 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025196 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_158 (21PG53-2) | SAMN39503646 | 17/02/2025 | |||||||||||||
| 348 | SRX23311154 | SRP484717 | Illumina NovaSeq 6000 | SRS20187482 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025197 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_159 (21PG53-2) | SAMN39503645 | 17/02/2025 | |||||||||||||
| 349 | SRX23311155 | SRP484717 | Illumina NovaSeq 6000 | SRS20187483 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025198 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_16 (21PG77-1) | SAMN39503644 | 17/02/2025 | |||||||||||||
| 350 | SRX23311156 | SRP484717 | Illumina NovaSeq 6000 | SRS20187484 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025199 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_160 (21PG53-2) | SAMN39503643 | 17/02/2025 | |||||||||||||
| 351 | SRX23311157 | SRP484717 | Illumina NovaSeq 6000 | SRS20187485 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025200 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_161 (21PG53-2) | SAMN39503642 | 17/02/2025 | |||||||||||||
| 352 | SRX23311158 | SRP484717 | Illumina NovaSeq 6000 | SRS20187486 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025201 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_162 (21PG53-2) | SAMN39503641 | 17/02/2025 | |||||||||||||
| 353 | SRX23311159 | SRP484717 | Illumina NovaSeq 6000 | SRS20187487 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025202 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_163 (21PG53-2) | SAMN39503640 | 17/02/2025 | |||||||||||||
| 354 | SRX23311160 | SRP484717 | Illumina NovaSeq 6000 | SRS20187488 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025203 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_164 (21PG53-2) | SAMN39503639 | 17/02/2025 | |||||||||||||
| 355 | SRX23311324 | SRP484717 | Illumina NovaSeq 6000 | SRS20187651 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025204 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_165 (21PG53-2) | SAMN39503638 | 17/02/2025 | |||||||||||||
| 356 | SRX23311325 | SRP484717 | Illumina NovaSeq 6000 | SRS20187653 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025205 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_166 (21PG53-2) | SAMN39503637 | 17/02/2025 | |||||||||||||
| 357 | SRX23311326 | SRP484717 | Illumina NovaSeq 6000 | SRS20187655 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025206 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_167 (21PG53-2) | SAMN39503636 | 17/02/2025 | |||||||||||||
| 358 | SRX23311327 | SRP484717 | Illumina NovaSeq 6000 | SRS20187654 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025207 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_168 (21PG32-2) | SAMN39503635 | 17/02/2025 | |||||||||||||
| 359 | SRX23311328 | SRP484717 | Illumina NovaSeq 6000 | SRS20187661 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025208 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_169 (21PG32-2) | SAMN39503634 | 17/02/2025 | |||||||||||||
| 360 | SRX23311329 | SRP484717 | Illumina NovaSeq 6000 | SRS20187662 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025209 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_17 (21PG77-1) | SAMN39503633 | 17/02/2025 | |||||||||||||
| 361 | SRX23311330 | SRP484717 | Illumina NovaSeq 6000 | SRS20187656 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025210 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_170 (21PG32-2) | SAMN39503632 | 17/02/2025 | |||||||||||||
| 362 | SRX23311331 | SRP484717 | Illumina NovaSeq 6000 | SRS20187659 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025211 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_171 (21PG32-2) | SAMN39503631 | 17/02/2025 | |||||||||||||
| 363 | SRX23311191 | SRP484717 | Illumina NovaSeq 6000 | SRS20187517 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025212 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_172 (21PG32-2) | SAMN39503630 | 17/02/2025 | |||||||||||||
| 364 | SRX23311192 | SRP484717 | Illumina NovaSeq 6000 | SRS20187520 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025213 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_173 (21PG32-2) | SAMN39503629 | 17/02/2025 | |||||||||||||
| 365 | SRX23311193 | SRP484717 | Illumina NovaSeq 6000 | SRS20187521 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025214 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_174 (21PG32-2) | SAMN39503628 | 17/02/2025 | |||||||||||||
| 366 | SRX23311194 | SRP484717 | Illumina NovaSeq 6000 | SRS20187522 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025215 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_175 (21PG32-2) | SAMN39503627 | 17/02/2025 | |||||||||||||
| 367 | SRX23311195 | SRP484717 | Illumina NovaSeq 6000 | SRS20187525 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025216 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_176 (21PG32-2) | SAMN39503626 | 17/02/2025 | |||||||||||||
| 368 | SRX23311196 | SRP484717 | Illumina NovaSeq 6000 | SRS20187524 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025217 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_177 (21PG32-2) | SAMN39503625 | 17/02/2025 | |||||||||||||
| 369 | SRX23311197 | SRP484717 | Illumina NovaSeq 6000 | SRS20187523 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025218 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_178 (21PG32-2) | SAMN39503624 | 17/02/2025 | |||||||||||||
| 370 | SRX23311198 | SRP484717 | Illumina NovaSeq 6000 | SRS20187527 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025219 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_179 (21PG32-2) | SAMN39503623 | 17/02/2025 | |||||||||||||
| 371 | SRX23310922 | SRP484717 | Illumina NovaSeq 6000 | SRS20187250 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025220 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_18 (21PG77-1) | SAMN39503622 | 17/02/2025 | |||||||||||||
| 372 | SRX23310923 | SRP484717 | Illumina NovaSeq 6000 | SRS20187252 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025221 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_180 (21PG32-2) | SAMN39503621 | 17/02/2025 | |||||||||||||
| 373 | SRX23310924 | SRP484717 | Illumina NovaSeq 6000 | SRS20187253 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025222 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_19 (21PG77-1) | SAMN39503620 | 17/02/2025 | |||||||||||||
| 374 | SRX23310925 | SRP484717 | Illumina NovaSeq 6000 | SRS20187251 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025223 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_191 (21PG49-1) | SAMN39503619 | 17/02/2025 | |||||||||||||
| 375 | SRX23310926 | SRP484717 | Illumina NovaSeq 6000 | SRS20187254 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025224 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_192 (21PG49-1) | SAMN39503618 | 17/02/2025 | |||||||||||||
| 376 | SRX23310927 | SRP484717 | Illumina NovaSeq 6000 | SRS20187255 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025225 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_193 (21PG57-2) | SAMN39503617 | 17/02/2025 | |||||||||||||
| 377 | SRX23310928 | SRP484717 | Illumina NovaSeq 6000 | SRS20187256 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025226 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_194 (21PG57-2) | SAMN39503616 | 17/02/2025 | |||||||||||||
| 378 | SRX23310929 | SRP484717 | Illumina NovaSeq 6000 | SRS20187258 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025227 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_195 (21PG57-2) | SAMN39503615 | 17/02/2025 | |||||||||||||
| 379 | SRX23311161 | SRP484717 | Illumina NovaSeq 6000 | SRS20187490 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025228 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_196 (21PG57-2) | SAMN39503614 | 17/02/2025 | |||||||||||||
| 380 | SRX23311163 | SRP484717 | Illumina NovaSeq 6000 | SRS20187492 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025230 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_198 (21PG57-2) | SAMN39503612 | 17/02/2025 | |||||||||||||
| 381 | SRX23311164 | SRP484717 | Illumina NovaSeq 6000 | SRS20187494 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025231 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_199 (21PG57-2) | SAMN39503611 | 17/02/2025 | |||||||||||||
| 382 | SRX23311165 | SRP484717 | Illumina NovaSeq 6000 | SRS20187493 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025232 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_2_2 (21PG50-3) | SAMN39503610 | 17/02/2025 | |||||||||||||
| 383 | SRX23311166 | SRP484717 | Illumina NovaSeq 6000 | SRS20187491 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025233 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_20 (21PG77-1) | SAMN39503609 | 17/02/2025 | |||||||||||||
| 384 | SRX23311167 | SRP484717 | Illumina NovaSeq 6000 | SRS20187495 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025234 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_200 (21PG57-2) | SAMN39503608 | 17/02/2025 | |||||||||||||
| 385 | SRX23311332 | SRP484717 | Illumina NovaSeq 6000 | SRS20187657 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025236 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_202 (21PG57-2) | SAMN39503606 | 17/02/2025 | |||||||||||||
| 386 | SRX23311333 | SRP484717 | Illumina NovaSeq 6000 | SRS20187658 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025237 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_203 (21PG57-2) | SAMN39503605 | 17/02/2025 | |||||||||||||
| 387 | SRX23311335 | SRP484717 | Illumina NovaSeq 6000 | SRS20187663 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025239 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_205 (21PG57-2) | SAMN39503603 | 17/02/2025 | |||||||||||||
| 388 | SRX23311336 | SRP484717 | Illumina NovaSeq 6000 | SRS20187664 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025240 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_206 (21PG57-2) | SAMN39503602 | 17/02/2025 | |||||||||||||
| 389 | SRX23311337 | SRP484717 | Illumina NovaSeq 6000 | SRS20187665 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025241 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_207 (21PG57-2) | SAMN39503601 | 17/02/2025 | |||||||||||||
| 390 | SRX23311338 | SRP484717 | Illumina NovaSeq 6000 | SRS20187666 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025242 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_208 (21PG57-2) | SAMN39503600 | 17/02/2025 | |||||||||||||
| 391 | SRX23311339 | SRP484717 | Illumina NovaSeq 6000 | SRS20187667 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025243 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_209 (21PG75-4) | SAMN39503599 | 17/02/2025 | |||||||||||||
| 392 | SRX23311199 | SRP484717 | Illumina NovaSeq 6000 | SRS20187526 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025244 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_21 (21PG77-1) | SAMN39503598 | 17/02/2025 | |||||||||||||
| 393 | SRX23311200 | SRP484717 | Illumina NovaSeq 6000 | SRS20187528 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025245 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_210 (21PG75-4) | SAMN39503597 | 17/02/2025 | |||||||||||||
| 394 | SRX23311201 | SRP484717 | Illumina NovaSeq 6000 | SRS20187530 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025246 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_211 (21PG75-4) | SAMN39503596 | 17/02/2025 | |||||||||||||
| 395 | SRX23311202 | SRP484717 | Illumina NovaSeq 6000 | SRS20187532 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025247 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_212 (21PG75-4) | SAMN39503595 | 17/02/2025 | |||||||||||||
| 396 | SRX23311203 | SRP484717 | Illumina NovaSeq 6000 | SRS20187531 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025248 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_213 (21PG75-4) | SAMN39503594 | 17/02/2025 | |||||||||||||
| 397 | SRX23311204 | SRP484717 | Illumina NovaSeq 6000 | SRS20187529 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025249 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_214 (21PG75-4) | SAMN39503593 | 17/02/2025 | |||||||||||||
| 398 | SRX23311205 | SRP484717 | Illumina NovaSeq 6000 | SRS20187534 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025250 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_215 (21PG75-4) | SAMN39503592 | 17/02/2025 | |||||||||||||
| 399 | SRX23311206 | SRP484717 | Illumina NovaSeq 6000 | SRS20187533 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025251 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_216 (21PG75-4) | SAMN39503591 | 17/02/2025 | |||||||||||||
| 400 | SRX23311169 | SRP484717 | Illumina NovaSeq 6000 | SRS20187497 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025252 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_217 (21PG75-4) | SAMN39503590 | 17/02/2025 | |||||||||||||
| 401 | SRX23311170 | SRP484717 | Illumina NovaSeq 6000 | SRS20187498 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025253 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_218 (21PG75-4) | SAMN39503589 | 17/02/2025 | |||||||||||||
| 402 | SRX23311171 | SRP484717 | Illumina NovaSeq 6000 | SRS20187500 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025254 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_219 (21PG75-4) | SAMN39503588 | 17/02/2025 | |||||||||||||
| 403 | SRX23311172 | SRP484717 | Illumina NovaSeq 6000 | SRS20187499 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025255 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_22 (21PG77-1) | SAMN39503587 | 17/02/2025 | |||||||||||||
| 404 | SRX23311260 | SRP484717 | Illumina NovaSeq 6000 | SRS20187592 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025256 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_220 (21PG75-4) | SAMN39503586 | 17/02/2025 | |||||||||||||
| 405 | SRX23311261 | SRP484717 | Illumina NovaSeq 6000 | SRS20187587 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025257 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_221 (21PG75-4) | SAMN39503585 | 17/02/2025 | |||||||||||||
| 406 | SRX23311262 | SRP484717 | Illumina NovaSeq 6000 | SRS20187588 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025258 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_222 (21PG75-4) | SAMN39503584 | 17/02/2025 | |||||||||||||
| 407 | SRX23311263 | SRP484717 | Illumina NovaSeq 6000 | SRS20187598 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025259 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_223 (21PG75-4) | SAMN39503583 | 17/02/2025 | |||||||||||||
| 408 | SRX23311341 | SRP484717 | Illumina NovaSeq 6000 | SRS20187670 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025261 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_225 (21PG75-4) | SAMN39503581 | 17/02/2025 | |||||||||||||
| 409 | SRX23311342 | SRP484717 | Illumina NovaSeq 6000 | SRS20187669 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025262 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_226 (21PG75-4) | SAMN39503580 | 17/02/2025 | |||||||||||||
| 410 | SRX23311343 | SRP484717 | Illumina NovaSeq 6000 | SRS20187671 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025263 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_227 (21PG75-4) | SAMN39503579 | 17/02/2025 | |||||||||||||
| 411 | SRX23311345 | SRP484717 | Illumina NovaSeq 6000 | SRS20187673 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025265 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_23 (21PG77-1) | SAMN39503577 | 17/02/2025 | |||||||||||||
| 412 | SRX23311346 | SRP484717 | Illumina NovaSeq 6000 | SRS20187675 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025266 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_24 (21PG77-1) | SAMN39503576 | 17/02/2025 | |||||||||||||
| 413 | SRX23311347 | SRP484717 | Illumina NovaSeq 6000 | SRS20187676 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025267 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_25 (21PG40-2) | SAMN39503575 | 17/02/2025 | |||||||||||||
| 414 | SRX23311207 | SRP484717 | Illumina NovaSeq 6000 | SRS20187538 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025268 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_26 (21PG40-2) | SAMN39503574 | 17/02/2025 | |||||||||||||
| 415 | SRX23311211 | SRP484717 | Illumina NovaSeq 6000 | SRS20187536 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025272 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_269 (21PG76-2) | SAMN39503570 | 17/02/2025 | |||||||||||||
| 416 | SRX23311212 | SRP484717 | Illumina NovaSeq 6000 | SRS20187540 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025273 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_27 (21PG40-2) | SAMN39503569 | 17/02/2025 | |||||||||||||
| 417 | SRX23311213 | SRP484717 | Illumina NovaSeq 6000 | SRS20187541 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025274 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_270 (21PG76-2) | SAMN39503568 | 17/02/2025 | |||||||||||||
| 418 | SRX23311214 | SRP484717 | Illumina NovaSeq 6000 | SRS20187544 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025275 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_271 (21PG76-2) | SAMN39503567 | 17/02/2025 | |||||||||||||
| 419 | SRX23310935 | SRP484717 | Illumina NovaSeq 6000 | SRS20187263 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025281 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_277 (21PG76-2) | SAMN39503561 | 17/02/2025 | |||||||||||||
| 420 | SRX23311264 | SRP484717 | Illumina NovaSeq 6000 | SRS20187589 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025284 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_28 (21PG40-2) | SAMN39503558 | 17/02/2025 | |||||||||||||
| 421 | SRX23311266 | SRP484717 | Illumina NovaSeq 6000 | SRS20187594 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025286 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_281 (21PG45-2) | SAMN39503556 | 17/02/2025 | |||||||||||||
| 422 | SRX23311348 | SRP484717 | Illumina NovaSeq 6000 | SRS20187674 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025292 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_287 (21PG45-2) | SAMN39503550 | 17/02/2025 | |||||||||||||
| 423 | SRX23311350 | SRP484717 | Illumina NovaSeq 6000 | SRS20187677 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025294 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_289 (21PG35-1) | SAMN39503548 | 17/02/2025 | |||||||||||||
| 424 | SRX23311351 | SRP484717 | Illumina NovaSeq 6000 | SRS20187678 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025295 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_29 (21PG40-2) | SAMN39503547 | 17/02/2025 | |||||||||||||
| 425 | SRX23311352 | SRP484717 | Illumina NovaSeq 6000 | SRS20187680 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025296 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_290 (21PG35-1) | SAMN39503546 | 17/02/2025 | |||||||||||||
| 426 | SRX23311353 | SRP484717 | Illumina NovaSeq 6000 | SRS20187681 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025297 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_291 (21PG35-1) | SAMN39503545 | 17/02/2025 | |||||||||||||
| 427 | SRX23311216 | SRP484717 | Illumina NovaSeq 6000 | SRS20187542 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025301 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_295 (21PG35-1) | SAMN39503541 | 17/02/2025 | |||||||||||||
| 428 | SRX23311217 | SRP484717 | Illumina NovaSeq 6000 | SRS20187543 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025302 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_296 (21PG65-1) | SAMN39503540 | 17/02/2025 | |||||||||||||
| 429 | SRX23311218 | SRP484717 | Illumina NovaSeq 6000 | SRS20187546 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025303 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_297 (21PG65-1) | SAMN39503539 | 17/02/2025 | |||||||||||||
| 430 | SRX23311219 | SRP484717 | Illumina NovaSeq 6000 | SRS20187547 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025304 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_298 (21PG65-1) | SAMN39503538 | 17/02/2025 | |||||||||||||
| 431 | SRX23311220 | SRP484717 | Illumina NovaSeq 6000 | SRS20187548 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025305 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_299 (21PG65-1) | SAMN39503537 | 17/02/2025 | |||||||||||||
| 432 | SRX23311221 | SRP484717 | Illumina NovaSeq 6000 | SRS20187549 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025306 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_2_3 (21PG50-3) | SAMN39503536 | 17/02/2025 | |||||||||||||
| 433 | SRX23311222 | SRP484717 | Illumina NovaSeq 6000 | SRS20187551 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025307 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_30 (21PG40-2) | SAMN39503535 | 17/02/2025 | |||||||||||||
| 434 | SRX23310938 | SRP484717 | Illumina NovaSeq 6000 | SRS20187265 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025308 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_300 (21PG65-1) | SAMN39503534 | 17/02/2025 | |||||||||||||
| 435 | SRX23310939 | SRP484717 | Illumina NovaSeq 6000 | SRS20187267 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025309 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_301 (21PG65-1) | SAMN39503533 | 17/02/2025 | |||||||||||||
| 436 | SRX23310940 | SRP484717 | Illumina NovaSeq 6000 | SRS20187269 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025310 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_302 (21PG65-1) | SAMN39503532 | 17/02/2025 | |||||||||||||
| 437 | SRX23310941 | SRP484717 | Illumina NovaSeq 6000 | SRS20187268 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025311 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_303 (21PG65-1) | SAMN39503531 | 17/02/2025 | |||||||||||||
| 438 | SRX23310942 | SRP484717 | Illumina NovaSeq 6000 | SRS20187270 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025312 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_304 (21PG65-1) | SAMN39503530 | 17/02/2025 | |||||||||||||
| 439 | SRX23310943 | SRP484717 | Illumina NovaSeq 6000 | SRS20187271 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025313 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_305 (21PG65-1) | SAMN39503529 | 17/02/2025 | |||||||||||||
| 440 | SRX23310944 | SRP484717 | Illumina NovaSeq 6000 | SRS20187272 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025314 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_306 (21PG65-1) | SAMN39503528 | 17/02/2025 | |||||||||||||
| 441 | SRX23310945 | SRP484717 | Illumina NovaSeq 6000 | SRS20187273 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025315 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_307 (21PG65-1) | SAMN39503527 | 17/02/2025 | |||||||||||||
| 442 | SRX23311272 | SRP484717 | Illumina NovaSeq 6000 | SRS20187602 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025316 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_308 (21PG65-1) | SAMN39503526 | 17/02/2025 | |||||||||||||
| 443 | SRX23311273 | SRP484717 | Illumina NovaSeq 6000 | SRS20187601 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025317 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_309 (21PG65-1) | SAMN39503525 | 17/02/2025 | |||||||||||||
| 444 | SRX23311274 | SRP484717 | Illumina NovaSeq 6000 | SRS20187600 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025318 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_31 (21PG40-2) | SAMN39503524 | 17/02/2025 | |||||||||||||
| 445 | SRX23311275 | SRP484717 | Illumina NovaSeq 6000 | SRS20187603 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025319 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_310 (21PG65-1) | SAMN39503523 | 17/02/2025 | |||||||||||||
| 446 | SRX23311276 | SRP484717 | Illumina NovaSeq 6000 | SRS20187604 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025320 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_311 (21PG65-1) | SAMN39503522 | 17/02/2025 | |||||||||||||
| 447 | SRX23311277 | SRP484717 | Illumina NovaSeq 6000 | SRS20187605 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025321 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_312 (21PG65-1) | SAMN39503521 | 17/02/2025 | |||||||||||||
| 448 | SRX23311278 | SRP484717 | Illumina NovaSeq 6000 | SRS20187606 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025322 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_313 (21PG65-1) | SAMN39503520 | 17/02/2025 | |||||||||||||
| 449 | SRX23311279 | SRP484717 | Illumina NovaSeq 6000 | SRS20187607 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025323 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_314 (21PG65-2) | SAMN39503519 | 17/02/2025 | |||||||||||||
| 450 | SRX23311356 | SRP484717 | Illumina NovaSeq 6000 | SRS20187682 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025324 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_315 (21PG65-2) | SAMN39503518 | 17/02/2025 | |||||||||||||
| 451 | SRX23311357 | SRP484717 | Illumina NovaSeq 6000 | SRS20187686 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025325 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_316 (21PG65-2) | SAMN39503517 | 17/02/2025 | |||||||||||||
| 452 | SRX23311358 | SRP484717 | Illumina NovaSeq 6000 | SRS20187685 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025326 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_317 (21PG65-2) | SAMN39503516 | 17/02/2025 | |||||||||||||
| 453 | SRX23311359 | SRP484717 | Illumina NovaSeq 6000 | SRS20187687 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025327 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_318 (21PG65-2) | SAMN39503515 | 17/02/2025 | |||||||||||||
| 454 | SRX23311360 | SRP484717 | Illumina NovaSeq 6000 | SRS20187688 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025328 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_319 (21PG65-2) | SAMN39503514 | 17/02/2025 | |||||||||||||
| 455 | SRX23311361 | SRP484717 | Illumina NovaSeq 6000 | SRS20187690 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025329 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_32 (21PG40-2) | SAMN39503513 | 17/02/2025 | |||||||||||||
| 456 | SRX23311362 | SRP484717 | Illumina NovaSeq 6000 | SRS20187689 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025330 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_320 (21PG65-2) | SAMN39503512 | 17/02/2025 | |||||||||||||
| 457 | SRX23311363 | SRP484717 | Illumina NovaSeq 6000 | SRS20187691 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025331 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_321 (21PG65-2) | SAMN39503511 | 17/02/2025 | |||||||||||||
| 458 | SRX23311223 | SRP484717 | Illumina NovaSeq 6000 | SRS20187550 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025332 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_322 (21PG65-2) | SAMN39503510 | 17/02/2025 | |||||||||||||
| 459 | SRX23311224 | SRP484717 | Illumina NovaSeq 6000 | SRS20187553 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025333 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_323 (20PG3-1) | SAMN39503509 | 17/02/2025 | |||||||||||||
| 460 | SRX23310946 | SRP484717 | Illumina NovaSeq 6000 | SRS20187274 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025340 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_33 (21PG40-2) | SAMN39503502 | 17/02/2025 | |||||||||||||
| 461 | SRX23310947 | SRP484717 | Illumina NovaSeq 6000 | SRS20187275 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025341 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_330 (20PG3-1) | SAMN39503501 | 17/02/2025 | |||||||||||||
| 462 | SRX23310948 | SRP484717 | Illumina NovaSeq 6000 | SRS20187276 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025342 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_331 (20PG3-1) | SAMN39503500 | 17/02/2025 | |||||||||||||
| 463 | SRX23310953 | SRP484717 | Illumina NovaSeq 6000 | SRS20187281 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025347 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_336 (20PG3-1) | SAMN39503495 | 17/02/2025 | |||||||||||||
| 464 | SRX23311282 | SRP484717 | Illumina NovaSeq 6000 | SRS20187609 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025350 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_339 (20PG3-1) | SAMN39503492 | 17/02/2025 | |||||||||||||
| 465 | SRX23311283 | SRP484717 | Illumina NovaSeq 6000 | SRS20187611 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025351 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_34 (21PG40-2) | SAMN39503491 | 17/02/2025 | |||||||||||||
| 466 | SRX23311284 | SRP484717 | Illumina NovaSeq 6000 | SRS20187612 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025352 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_340 (20PG3-1) | SAMN39503490 | 17/02/2025 | |||||||||||||
| 467 | SRX23311286 | SRP484717 | Illumina NovaSeq 6000 | SRS20187614 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025354 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_342 (20PG3-1) | SAMN39503488 | 17/02/2025 | |||||||||||||
| 468 | SRX23311366 | SRP484717 | Illumina NovaSeq 6000 | SRS20187693 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025358 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_346 (20PG4-3) | SAMN39503484 | 17/02/2025 | |||||||||||||
| 469 | SRX23311367 | SRP484717 | Illumina NovaSeq 6000 | SRS20187695 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025359 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_347 (20PG4-3) | SAMN39503483 | 17/02/2025 | |||||||||||||
| 470 | SRX23311368 | SRP484717 | Illumina NovaSeq 6000 | SRS20187697 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025360 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_348 (20PG4-3) | SAMN39503482 | 17/02/2025 | |||||||||||||
| 471 | SRX23311369 | SRP484717 | Illumina NovaSeq 6000 | SRS20187696 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025361 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_349 (20PG4-3) | SAMN39503481 | 17/02/2025 | |||||||||||||
| 472 | SRX23311370 | SRP484717 | Illumina NovaSeq 6000 | SRS20187700 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025362 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_35 (21PG40-2) | SAMN39503480 | 17/02/2025 | |||||||||||||
| 473 | SRX23311371 | SRP484717 | Illumina NovaSeq 6000 | SRS20187702 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025363 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_350 (20PG4-3) | SAMN39503479 | 17/02/2025 | |||||||||||||
| 474 | SRX23311231 | SRP484717 | Illumina NovaSeq 6000 | SRS20187560 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025364 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_351 (20PG4-3) | SAMN39503478 | 17/02/2025 | |||||||||||||
| 475 | SRX23311232 | SRP484717 | Illumina NovaSeq 6000 | SRS20187566 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025365 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_352 (20PG4-3) | SAMN39503477 | 17/02/2025 | |||||||||||||
| 476 | SRX23311233 | SRP484717 | Illumina NovaSeq 6000 | SRS20187559 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025366 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_353 (20PG4-3) | SAMN39503476 | 17/02/2025 | |||||||||||||
| 477 | SRX23311234 | SRP484717 | Illumina NovaSeq 6000 | SRS20187561 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025367 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_354 (20PG4-3) | SAMN39503475 | 17/02/2025 | |||||||||||||
| 478 | SRX23311235 | SRP484717 | Illumina NovaSeq 6000 | SRS20187562 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025368 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_355 (20PG4-3) | SAMN39503474 | 17/02/2025 | |||||||||||||
| 479 | SRX23311236 | SRP484717 | Illumina NovaSeq 6000 | SRS20187567 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025369 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_356 (20PG4-3) | SAMN39503473 | 17/02/2025 | |||||||||||||
| 480 | SRX23311237 | SRP484717 | Illumina NovaSeq 6000 | SRS20187563 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025370 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_357 (20PG4-3) | SAMN39503472 | 17/02/2025 | |||||||||||||
| 481 | SRX23311238 | SRP484717 | Illumina NovaSeq 6000 | SRS20187564 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025371 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_358 (20PG4-3) | SAMN39503471 | 17/02/2025 | |||||||||||||
| 482 | SRX23310954 | SRP484717 | Illumina NovaSeq 6000 | SRS20187282 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025372 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_359 (21PG33-2) | SAMN39503470 | 17/02/2025 | |||||||||||||
| 483 | SRX23310955 | SRP484717 | Illumina NovaSeq 6000 | SRS20187285 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025373 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_36 (21PG40-2) | SAMN39503469 | 17/02/2025 | |||||||||||||
| 484 | SRX23310956 | SRP484717 | Illumina NovaSeq 6000 | SRS20187283 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025374 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_360 (21PG33-2) | SAMN39503468 | 17/02/2025 | |||||||||||||
| 485 | SRX23310957 | SRP484717 | Illumina NovaSeq 6000 | SRS20187284 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025375 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_361 (21PG33-2) | SAMN39503467 | 17/02/2025 | |||||||||||||
| 486 | SRX23310958 | SRP484717 | Illumina NovaSeq 6000 | SRS20187286 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025376 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_362 (21PG33-2) | SAMN39503466 | 17/02/2025 | |||||||||||||
| 487 | SRX23310959 | SRP484717 | Illumina NovaSeq 6000 | SRS20187288 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025377 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_363 (21PG33-2) | SAMN39503465 | 17/02/2025 | |||||||||||||
| 488 | SRX23310960 | SRP484717 | Illumina NovaSeq 6000 | SRS20187287 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025378 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_364 (21PG33-2) | SAMN39503464 | 17/02/2025 | |||||||||||||
| 489 | SRX23310961 | SRP484717 | Illumina NovaSeq 6000 | SRS20187289 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025379 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_365 (21PG33-2) | SAMN39503463 | 17/02/2025 | |||||||||||||
| 490 | SRX23311288 | SRP484717 | Illumina NovaSeq 6000 | SRS20187615 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025380 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_366 (21PG33-2) | SAMN39503462 | 17/02/2025 | |||||||||||||
| 491 | SRX23311291 | SRP484717 | Illumina NovaSeq 6000 | SRS20187619 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025383 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_369 (21PG33-2) | SAMN39503459 | 17/02/2025 | |||||||||||||
| 492 | SRX23311292 | SRP484717 | Illumina NovaSeq 6000 | SRS20187620 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025384 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_37 (21PG40-2) | SAMN39503458 | 17/02/2025 | |||||||||||||
| 493 | SRX23311293 | SRP484717 | Illumina NovaSeq 6000 | SRS20187621 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025385 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_370 (21PG33-2) | SAMN39503457 | 17/02/2025 | |||||||||||||
| 494 | SRX23311294 | SRP484717 | Illumina NovaSeq 6000 | SRS20187626 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025386 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_371 (21PG33-2) | SAMN39503456 | 17/02/2025 | |||||||||||||
| 495 | SRX23311295 | SRP484717 | Illumina NovaSeq 6000 | SRS20187623 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025387 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_372 (21PG33-2) | SAMN39503455 | 17/02/2025 | |||||||||||||
| 496 | SRX23311373 | SRP484717 | Illumina NovaSeq 6000 | SRS20187699 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025389 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_39 (21PG40-2) | SAMN39503453 | 17/02/2025 | |||||||||||||
| 497 | SRX23311374 | SRP484717 | Illumina NovaSeq 6000 | SRS20187701 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025390 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_2_4 (21PG50-3) | SAMN39503452 | 17/02/2025 | |||||||||||||
| 498 | SRX23311376 | SRP484717 | Illumina NovaSeq 6000 | SRS20187704 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025392 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_41 (21PG33-1) | SAMN39503450 | 17/02/2025 | |||||||||||||
| 499 | SRX23311377 | SRP484717 | Illumina NovaSeq 6000 | SRS20187705 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025393 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_42 (21PG33-1) | SAMN39503449 | 17/02/2025 | |||||||||||||
| 500 | SRX23311378 | SRP484717 | Illumina NovaSeq 6000 | SRS20187706 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025394 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_43 (21PG33-1) | SAMN39503448 | 17/02/2025 | |||||||||||||
| 501 | SRX23311379 | SRP484717 | Illumina NovaSeq 6000 | SRS20187709 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025395 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_44 (21PG33-1) | SAMN39503447 | 17/02/2025 | |||||||||||||
| 502 | SRX23311239 | SRP484717 | Illumina NovaSeq 6000 | SRS20187573 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025396 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_45 (21PG33-1) | SAMN39503446 | 17/02/2025 | |||||||||||||
| 503 | SRX23311241 | SRP484717 | Illumina NovaSeq 6000 | SRS20187568 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025398 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_47 (21PG33-1) | SAMN39503444 | 17/02/2025 | |||||||||||||
| 504 | SRX23311242 | SRP484717 | Illumina NovaSeq 6000 | SRS20187569 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025399 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_48 (21PG33-1) | SAMN39503443 | 17/02/2025 | |||||||||||||
| 505 | SRX23311243 | SRP484717 | Illumina NovaSeq 6000 | SRS20187571 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025400 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_49 (21PG33-1) | SAMN39503442 | 17/02/2025 | |||||||||||||
| 506 | SRX23311244 | SRP484717 | Illumina NovaSeq 6000 | SRS20187570 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025401 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_2_5 (21PG50-3) | SAMN39503441 | 17/02/2025 | |||||||||||||
| 507 | SRX23311245 | SRP484717 | Illumina NovaSeq 6000 | SRS20187572 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025402 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_50 (21PG33-1) | SAMN39503440 | 17/02/2025 | |||||||||||||
| 508 | SRX23311246 | SRP484717 | Illumina NovaSeq 6000 | SRS20187574 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025403 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_51 (21PG33-1) | SAMN39503439 | 17/02/2025 | |||||||||||||
| 509 | SRX23310962 | SRP484717 | Illumina NovaSeq 6000 | SRS20187291 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025404 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_52 (21PG33-1) | SAMN39503438 | 17/02/2025 | |||||||||||||
| 510 | SRX23310963 | SRP484717 | Illumina NovaSeq 6000 | SRS20187290 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025405 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_53 (21PG33-1) | SAMN39503437 | 17/02/2025 | |||||||||||||
| 511 | SRX23310964 | SRP484717 | Illumina NovaSeq 6000 | SRS20187293 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025406 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_54 (21PG33-1) | SAMN39503436 | 17/02/2025 | |||||||||||||
| 512 | SRX23310965 | SRP484717 | Illumina NovaSeq 6000 | SRS20187292 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025407 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_55 (21PG33-1) | SAMN39503435 | 17/02/2025 | |||||||||||||
| 513 | SRX23310966 | SRP484717 | Illumina NovaSeq 6000 | SRS20187294 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025408 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_56 (21PG33-1) | SAMN39503434 | 17/02/2025 | |||||||||||||
| 514 | SRX23310967 | SRP484717 | Illumina NovaSeq 6000 | SRS20187295 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025409 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_57 (21PG33-1) | SAMN39503433 | 17/02/2025 | |||||||||||||
| 515 | SRX23310968 | SRP484717 | Illumina NovaSeq 6000 | SRS20187296 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025410 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_58 (21PG33-1) | SAMN39503432 | 17/02/2025 | |||||||||||||
| 516 | SRX23311296 | SRP484717 | Illumina NovaSeq 6000 | SRS20187622 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025412 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_2_6 (21PG50-3) | SAMN39503430 | 17/02/2025 | |||||||||||||
| 517 | SRX23311297 | SRP484717 | Illumina NovaSeq 6000 | SRS20187624 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025413 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_60 (21PG33-1) | SAMN39503429 | 17/02/2025 | |||||||||||||
| 518 | SRX23311298 | SRP484717 | Illumina NovaSeq 6000 | SRS20187627 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025414 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_61 (21PG33-1) | SAMN39503428 | 17/02/2025 | |||||||||||||
| 519 | SRX23311299 | SRP484717 | Illumina NovaSeq 6000 | SRS20187625 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025415 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_62 (21PG33-1) | SAMN39503427 | 17/02/2025 | |||||||||||||
| 520 | SRX23311383 | SRP484717 | Illumina NovaSeq 6000 | SRS20187711 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025423 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | 10141 | Smart-Seq2 | Full-length | JC_2_7 (21PG50-3) | SAMN39503419 | 17/02/2025 | |||||||||||||
| 521 | SRX23311253 | SRP484717 | Illumina NovaSeq 6000 | SRS20187581 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025434 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_8 (21PG77-1) | SAMN39503408 | 17/02/2025 | |||||||||||||
| 522 | SRX23311254 | SRP484717 | Illumina NovaSeq 6000 | SRS20187582 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025435 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_80 (21PG42-2) | SAMN39503407 | 17/02/2025 | |||||||||||||
| 523 | SRX23310971 | SRP484717 | Illumina NovaSeq 6000 | SRS20187299 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025437 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_82 (21PG55-1) | SAMN39503405 | 17/02/2025 | |||||||||||||
| 524 | SRX23310972 | SRP484717 | Illumina NovaSeq 6000 | SRS20187300 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025438 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_83 (21PG55-1) | SAMN39503404 | 17/02/2025 | |||||||||||||
| 525 | SRX23310973 | SRP484717 | Illumina NovaSeq 6000 | SRS20187301 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025439 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_84 (21PG55-1) | SAMN39503403 | 17/02/2025 | |||||||||||||
| 526 | SRX23310974 | SRP484717 | Illumina NovaSeq 6000 | SRS20187302 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025440 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_85 (21PG55-1) | SAMN39503402 | 17/02/2025 | |||||||||||||
| 527 | SRX23310975 | SRP484717 | Illumina NovaSeq 6000 | SRS20187305 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025441 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_86 (21PG55-1) | SAMN39503401 | 17/02/2025 | |||||||||||||
| 528 | SRX23310976 | SRP484717 | Illumina NovaSeq 6000 | SRS20187304 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025442 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_87 (21PG55-1) | SAMN39503400 | 17/02/2025 | |||||||||||||
| 529 | SRX23310977 | SRP484717 | Illumina NovaSeq 6000 | SRS20187303 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025443 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_88 (21PG55-1) | SAMN39503399 | 17/02/2025 | |||||||||||||
| 530 | SRX23311304 | SRP484717 | Illumina NovaSeq 6000 | SRS20187631 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025444 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_89 (21PG55-1) | SAMN39503398 | 17/02/2025 | |||||||||||||
| 531 | SRX23311305 | SRP484717 | Illumina NovaSeq 6000 | SRS20187634 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025445 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | 10141 | Smart-Seq2 | Full-length | JC_2_9 (21PG77-1) | SAMN39503397 | 17/02/2025 | |||||||||||||
| 532 | SRX23311306 | SRP484717 | Illumina NovaSeq 6000 | SRS20187632 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025446 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_90 (21PG55-1) | SAMN39503396 | 17/02/2025 | |||||||||||||
| 533 | SRX23311307 | SRP484717 | Illumina NovaSeq 6000 | SRS20187637 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025447 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_91 (21PG55-1) | SAMN39503395 | 17/02/2025 | |||||||||||||
| 534 | SRX23311309 | SRP484717 | Illumina NovaSeq 6000 | SRS20187636 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025449 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_93 (21PG55-1) | SAMN39503393 | 17/02/2025 | |||||||||||||
| 535 | SRX23311310 | SRP484717 | Illumina NovaSeq 6000 | SRS20187638 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025450 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_94 (21PG55-1) | SAMN39503392 | 17/02/2025 | |||||||||||||
| 536 | SRX23311311 | SRP484717 | Illumina NovaSeq 6000 | SRS20187639 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025451 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_95 (21PG55-1) | SAMN39503391 | 17/02/2025 | |||||||||||||
| 537 | SRX23311388 | SRP484717 | Illumina NovaSeq 6000 | SRS20187716 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025452 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_96 (21PG55-1) | SAMN39503390 | 17/02/2025 | |||||||||||||
| 538 | SRX23311389 | SRP484717 | Illumina NovaSeq 6000 | SRS20187718 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025453 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | 10141 | Smart-Seq2 | Full-length | JC_2_97 (21PG55-3) | SAMN39503389 | 17/02/2025 | |||||||||||||
| 539 | SRX23311390 | SRP484717 | Illumina NovaSeq 6000 | SRS20187720 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025454 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_98 (21PG55-3) | SAMN39503388 | 17/02/2025 | |||||||||||||
| 540 | SRX23311391 | SRP484717 | Illumina NovaSeq 6000 | SRS20187717 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025455 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | 10141 | Smart-Seq2 | Full-length | JC_2_99 (21PG55-3) | SAMN39503387 | 17/02/2025 |
sex, strain, genotype, speciesId¶
- uniprot strain list
- uniprot species list
- bgee strain mapping
- sex options: M (male), F (female), NA (not available, unknown), mixed (both male and female)
In [ ]:
library.loc[:, "sex"] = "NA"
#library.loc[library["sex"] == "female", "sex"] = "F"
library.loc[:,'strain'] = 'Hartley'
#library.loc[:,'genotype'] = ''
#library.loc[:,'speciesId'] = ''
# view
display_df(library)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRX23310999 | SRP484717 | Illumina NovaSeq 6000 | SRS20187327 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024795 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_1 (21PG50-2) | SAMN39504047 | 17/02/2025 | |||||||||||
| 1 | SRX23311255 | SRP484717 | Illumina NovaSeq 6000 | SRS20187583 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024796 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_10 (21PG39-1) | SAMN39504046 | 17/02/2025 | |||||||||||
| 2 | SRX23311256 | SRP484717 | Illumina NovaSeq 6000 | SRS20187584 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024797 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_100 (21PG55-2) | SAMN39504045 | 17/02/2025 | |||||||||||
| 3 | SRX23311257 | SRP484717 | Illumina NovaSeq 6000 | SRS20187585 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024798 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_101 (21PG55-2) | SAMN39504044 | 17/02/2025 | |||||||||||
| 4 | SRX23311258 | SRP484717 | Illumina NovaSeq 6000 | SRS20187586 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024799 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_102 (21PG55-2) | SAMN39504043 | 17/02/2025 | |||||||||||
| 5 | SRX23311259 | SRP484717 | Illumina NovaSeq 6000 | SRS20187590 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024800 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_103 (21PG55-2) | SAMN39504042 | 17/02/2025 | |||||||||||
| 6 | SRX23310825 | SRP484717 | Illumina NovaSeq 6000 | SRS20187153 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024801 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_104 (21PG55-2) | SAMN39504041 | 17/02/2025 | |||||||||||
| 7 | SRX23310826 | SRP484717 | Illumina NovaSeq 6000 | SRS20187154 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024802 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_105 (21PG55-2) | SAMN39504040 | 17/02/2025 | |||||||||||
| 8 | SRX23310827 | SRP484717 | Illumina NovaSeq 6000 | SRS20187157 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024803 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_106 (21PG55-2) | SAMN39504039 | 17/02/2025 | |||||||||||
| 9 | SRX23311000 | SRP484717 | Illumina NovaSeq 6000 | SRS20187330 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024804 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_107 (21PG55-2) | SAMN39504038 | 17/02/2025 | |||||||||||
| 10 | SRX23311001 | SRP484717 | Illumina NovaSeq 6000 | SRS20187329 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024805 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_108 (21PG55-2) | SAMN39504037 | 17/02/2025 | |||||||||||
| 11 | SRX23311002 | SRP484717 | Illumina NovaSeq 6000 | SRS20187328 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024806 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_109 (21PG34-1) | SAMN39504036 | 17/02/2025 | |||||||||||
| 12 | SRX23311003 | SRP484717 | Illumina NovaSeq 6000 | SRS20187331 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024807 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_11 (21PG39-1) | SAMN39504035 | 17/02/2025 | |||||||||||
| 13 | SRX23311004 | SRP484717 | Illumina NovaSeq 6000 | SRS20187333 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024808 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_110 (21PG34-1) | SAMN39504034 | 17/02/2025 | |||||||||||
| 14 | SRX23311006 | SRP484717 | Illumina NovaSeq 6000 | SRS20187334 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024810 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_112 (21PG34-1) | SAMN39504032 | 17/02/2025 | |||||||||||
| 15 | SRX23311007 | SRP484717 | Illumina NovaSeq 6000 | SRS20187335 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024811 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_113 (21PG37-2) | SAMN39504031 | 17/02/2025 | |||||||||||
| 16 | SRX23311392 | SRP484717 | Illumina NovaSeq 6000 | SRS20187719 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024812 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_114 (21PG37-2) | SAMN39504030 | 17/02/2025 | |||||||||||
| 17 | SRX23311393 | SRP484717 | Illumina NovaSeq 6000 | SRS20187721 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024813 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_115 (21PG37-2) | SAMN39504029 | 17/02/2025 | |||||||||||
| 18 | SRX23311394 | SRP484717 | Illumina NovaSeq 6000 | SRS20187722 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024814 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_116 (21PG37-2) | SAMN39504028 | 17/02/2025 | |||||||||||
| 19 | SRX23311395 | SRP484717 | Illumina NovaSeq 6000 | SRS20187724 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024815 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_117 (21PG37-2) | SAMN39504027 | 17/02/2025 | |||||||||||
| 20 | SRX23311397 | SRP484717 | Illumina NovaSeq 6000 | SRS20187725 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024817 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_119 (21PG37-2) | SAMN39504025 | 17/02/2025 | |||||||||||
| 21 | SRX23311398 | SRP484717 | Illumina NovaSeq 6000 | SRS20187726 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024818 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_12 (21PG39-1) | SAMN39504024 | 17/02/2025 | |||||||||||
| 22 | SRX23311399 | SRP484717 | Illumina NovaSeq 6000 | SRS20187727 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024819 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_120 (21PG37-2) | SAMN39504023 | 17/02/2025 | |||||||||||
| 23 | SRX23310828 | SRP484717 | Illumina NovaSeq 6000 | SRS20187156 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024820 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_121 (21PG37-2) | SAMN39504022 | 17/02/2025 | |||||||||||
| 24 | SRX23310829 | SRP484717 | Illumina NovaSeq 6000 | SRS20187158 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024821 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_122 (21PG37-2) | SAMN39504021 | 17/02/2025 | |||||||||||
| 25 | SRX23310831 | SRP484717 | Illumina NovaSeq 6000 | SRS20187159 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024823 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_124 (21PG37-3) | SAMN39504019 | 17/02/2025 | |||||||||||
| 26 | SRX23310832 | SRP484717 | Illumina NovaSeq 6000 | SRS20187160 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024824 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_125 (21PG37-3) | SAMN39504018 | 17/02/2025 | |||||||||||
| 27 | SRX23310833 | SRP484717 | Illumina NovaSeq 6000 | SRS20187161 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024825 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_126 (21PG37-3) | SAMN39504017 | 17/02/2025 | |||||||||||
| 28 | SRX23310834 | SRP484717 | Illumina NovaSeq 6000 | SRS20187163 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024826 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_127 (21PG37-3) | SAMN39504016 | 17/02/2025 | |||||||||||
| 29 | SRX23310835 | SRP484717 | Illumina NovaSeq 6000 | SRS20187162 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024827 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_128 (21PG37-3) | SAMN39504015 | 17/02/2025 | |||||||||||
| 30 | SRX23311008 | SRP484717 | Illumina NovaSeq 6000 | SRS20187336 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024828 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_129 (21PG37-3) | SAMN39504014 | 17/02/2025 | |||||||||||
| 31 | SRX23311009 | SRP484717 | Illumina NovaSeq 6000 | SRS20187337 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024829 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_13 (21PG39-1) | SAMN39504013 | 17/02/2025 | |||||||||||
| 32 | SRX23311010 | SRP484717 | Illumina NovaSeq 6000 | SRS20187338 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024830 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_130 (21PG37-3) | SAMN39504012 | 17/02/2025 | |||||||||||
| 33 | SRX23311011 | SRP484717 | Illumina NovaSeq 6000 | SRS20187339 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024831 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_131 (21PG37-3) | SAMN39504011 | 17/02/2025 | |||||||||||
| 34 | SRX23311012 | SRP484717 | Illumina NovaSeq 6000 | SRS20187340 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024832 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_132 (21PG37-3) | SAMN39504010 | 17/02/2025 | |||||||||||
| 35 | SRX23311013 | SRP484717 | Illumina NovaSeq 6000 | SRS20187341 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024833 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_133 (21PG37-3) | SAMN39504009 | 17/02/2025 | |||||||||||
| 36 | SRX23311014 | SRP484717 | Illumina NovaSeq 6000 | SRS20187342 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024834 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_134 (21PG37-3) | SAMN39504008 | 17/02/2025 | |||||||||||
| 37 | SRX23311015 | SRP484717 | Illumina NovaSeq 6000 | SRS20187343 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024835 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_135 (21PG37-3) | SAMN39504007 | 17/02/2025 | |||||||||||
| 38 | SRX23311400 | SRP484717 | Illumina NovaSeq 6000 | SRS20187728 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024836 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_136 (21PG37-3) | SAMN39504006 | 17/02/2025 | |||||||||||
| 39 | SRX23311402 | SRP484717 | Illumina NovaSeq 6000 | SRS20187730 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024838 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_138 (21PG37-3) | SAMN39504004 | 17/02/2025 | |||||||||||
| 40 | SRX23311404 | SRP484717 | Illumina NovaSeq 6000 | SRS20187731 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024840 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_14 (21PG39-1) | SAMN39504002 | 17/02/2025 | |||||||||||
| 41 | SRX23311405 | SRP484717 | Illumina NovaSeq 6000 | SRS20187733 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024841 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_140 (21PG37-3) | SAMN39504001 | 17/02/2025 | |||||||||||
| 42 | SRX23311406 | SRP484717 | Illumina NovaSeq 6000 | SRS20187732 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024842 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_141 (21PG37-3) | SAMN39504000 | 17/02/2025 | |||||||||||
| 43 | SRX23310985 | SRP484717 | Illumina NovaSeq 6000 | SRS20187311 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024851 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_15 (21PG39-1) | SAMN39503991 | 17/02/2025 | |||||||||||
| 44 | SRX23310837 | SRP484717 | Illumina NovaSeq 6000 | SRS20187165 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024853 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_151 (21PG55-2) | SAMN39503989 | 17/02/2025 | |||||||||||
| 45 | SRX23310840 | SRP484717 | Illumina NovaSeq 6000 | SRS20187168 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024856 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_154 (21PG53-1) | SAMN39503986 | 17/02/2025 | |||||||||||
| 46 | SRX23310842 | SRP484717 | Illumina NovaSeq 6000 | SRS20187170 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024858 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_156 (21PG55-2) | SAMN39503984 | 17/02/2025 | |||||||||||
| 47 | SRX23310843 | SRP484717 | Illumina NovaSeq 6000 | SRS20187171 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024859 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_157 (21PG53-1) | SAMN39503983 | 17/02/2025 | |||||||||||
| 48 | SRX23311016 | SRP484717 | Illumina NovaSeq 6000 | SRS20187344 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024860 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_158 (21PG53-1) | SAMN39503982 | 17/02/2025 | |||||||||||
| 49 | SRX23311017 | SRP484717 | Illumina NovaSeq 6000 | SRS20187345 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024861 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_159 (21PG53-1) | SAMN39503981 | 17/02/2025 | |||||||||||
| 50 | SRX23311018 | SRP484717 | Illumina NovaSeq 6000 | SRS20187346 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024862 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_16 (21PG39-1) | SAMN39503980 | 17/02/2025 | |||||||||||
| 51 | SRX23311019 | SRP484717 | Illumina NovaSeq 6000 | SRS20187347 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024863 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_160 (21PG53-1) | SAMN39503979 | 17/02/2025 | |||||||||||
| 52 | SRX23311020 | SRP484717 | Illumina NovaSeq 6000 | SRS20187348 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024864 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_161 (21PG53-1) | SAMN39503978 | 17/02/2025 | |||||||||||
| 53 | SRX23311021 | SRP484717 | Illumina NovaSeq 6000 | SRS20187350 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024865 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_162 (21PG53-1) | SAMN39503977 | 17/02/2025 | |||||||||||
| 54 | SRX23311022 | SRP484717 | Illumina NovaSeq 6000 | SRS20187352 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024866 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_163 (21PG53-1) | SAMN39503976 | 17/02/2025 | |||||||||||
| 55 | SRX23311023 | SRP484717 | Illumina NovaSeq 6000 | SRS20187351 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024867 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_164 (21PG53-1) | SAMN39503975 | 17/02/2025 | |||||||||||
| 56 | SRX23311408 | SRP484717 | Illumina NovaSeq 6000 | SRS20187736 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024868 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_165 (21PG53-1) | SAMN39503974 | 17/02/2025 | |||||||||||
| 57 | SRX23311409 | SRP484717 | Illumina NovaSeq 6000 | SRS20187738 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024869 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_166 (21PG53-1) | SAMN39503973 | 17/02/2025 | |||||||||||
| 58 | SRX23311410 | SRP484717 | Illumina NovaSeq 6000 | SRS20187737 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024870 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_167 (21PG53-1) | SAMN39503972 | 17/02/2025 | |||||||||||
| 59 | SRX23311411 | SRP484717 | Illumina NovaSeq 6000 | SRS20187741 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024871 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_168 (21PG53-1) | SAMN39503971 | 17/02/2025 | |||||||||||
| 60 | SRX23311412 | SRP484717 | Illumina NovaSeq 6000 | SRS20187742 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024872 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_169 (21PG53-1) | SAMN39503970 | 17/02/2025 | |||||||||||
| 61 | SRX23311413 | SRP484717 | Illumina NovaSeq 6000 | SRS20187740 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024873 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_17 (21PG39-2) | SAMN39503969 | 17/02/2025 | |||||||||||
| 62 | SRX23311414 | SRP484717 | Illumina NovaSeq 6000 | SRS20187739 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024874 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_170 (21PG53-1) | SAMN39503968 | 17/02/2025 | |||||||||||
| 63 | SRX23310987 | SRP484717 | Illumina NovaSeq 6000 | SRS20187315 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024877 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_173 (21PG77-2) | SAMN39503965 | 17/02/2025 | |||||||||||
| 64 | SRX23310988 | SRP484717 | Illumina NovaSeq 6000 | SRS20187316 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024878 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_174 (21PG77-2) | SAMN39503964 | 17/02/2025 | |||||||||||
| 65 | SRX23310990 | SRP484717 | Illumina NovaSeq 6000 | SRS20187318 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024880 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_176 (21PG77-2) | SAMN39503962 | 17/02/2025 | |||||||||||
| 66 | SRX23310991 | SRP484717 | Illumina NovaSeq 6000 | SRS20187319 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024881 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_177 (21PG77-2) | SAMN39503961 | 17/02/2025 | |||||||||||
| 67 | SRX23310992 | SRP484717 | Illumina NovaSeq 6000 | SRS20187321 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024882 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_178 (21PG77-2) | SAMN39503960 | 17/02/2025 | |||||||||||
| 68 | SRX23310993 | SRP484717 | Illumina NovaSeq 6000 | SRS20187320 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024883 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_179 (21PG77-2) | SAMN39503959 | 17/02/2025 | |||||||||||
| 69 | SRX23310844 | SRP484717 | Illumina NovaSeq 6000 | SRS20187173 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024884 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_18 (21PG40-1) | SAMN39503958 | 17/02/2025 | |||||||||||
| 70 | SRX23310845 | SRP484717 | Illumina NovaSeq 6000 | SRS20187172 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024885 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_180 (21PG77-2) | SAMN39503957 | 17/02/2025 | |||||||||||
| 71 | SRX23310846 | SRP484717 | Illumina NovaSeq 6000 | SRS20187175 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024886 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_181 (21PG77-2) | SAMN39503956 | 17/02/2025 | |||||||||||
| 72 | SRX23310847 | SRP484717 | Illumina NovaSeq 6000 | SRS20187174 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024887 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_182 (21PG77-2) | SAMN39503955 | 17/02/2025 | |||||||||||
| 73 | SRX23310848 | SRP484717 | Illumina NovaSeq 6000 | SRS20187176 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024888 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_183 (21PG77-2) | SAMN39503954 | 17/02/2025 | |||||||||||
| 74 | SRX23310849 | SRP484717 | Illumina NovaSeq 6000 | SRS20187178 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024889 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_184 (21PG77-2) | SAMN39503953 | 17/02/2025 | |||||||||||
| 75 | SRX23310850 | SRP484717 | Illumina NovaSeq 6000 | SRS20187177 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024890 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_185 (21PG77-2) | SAMN39503952 | 17/02/2025 | |||||||||||
| 76 | SRX23310851 | SRP484717 | Illumina NovaSeq 6000 | SRS20187179 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024891 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_186 (21PG50-1) | SAMN39503951 | 17/02/2025 | |||||||||||
| 77 | SRX23311024 | SRP484717 | Illumina NovaSeq 6000 | SRS20187349 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024892 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_187 (21PG50-1) | SAMN39503950 | 17/02/2025 | |||||||||||
| 78 | SRX23311025 | SRP484717 | Illumina NovaSeq 6000 | SRS20187354 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024893 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_188 (21PG50-1) | SAMN39503949 | 17/02/2025 | |||||||||||
| 79 | SRX23311027 | SRP484717 | Illumina NovaSeq 6000 | SRS20187353 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024895 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_19 (21PG40-1) | SAMN39503947 | 17/02/2025 | |||||||||||
| 80 | SRX23311029 | SRP484717 | Illumina NovaSeq 6000 | SRS20187356 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024897 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_191 (21PG50-1) | SAMN39503945 | 17/02/2025 | |||||||||||
| 81 | SRX23311030 | SRP484717 | Illumina NovaSeq 6000 | SRS20187359 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024898 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_192 (21PG50-1) | SAMN39503944 | 17/02/2025 | |||||||||||
| 82 | SRX23311031 | SRP484717 | Illumina NovaSeq 6000 | SRS20187360 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024899 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_193 (21PG57-1) | SAMN39503943 | 17/02/2025 | |||||||||||
| 83 | SRX23311417 | SRP484717 | Illumina NovaSeq 6000 | SRS20187747 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024901 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_195 (21PG57-1) | SAMN39503941 | 17/02/2025 | |||||||||||
| 84 | SRX23311418 | SRP484717 | Illumina NovaSeq 6000 | SRS20187745 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024902 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_196 (21PG57-1) | SAMN39503940 | 17/02/2025 | |||||||||||
| 85 | SRX23311419 | SRP484717 | Illumina NovaSeq 6000 | SRS20187746 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024903 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_198 (21PG57-1) | SAMN39503939 | 17/02/2025 | |||||||||||
| 86 | SRX23311420 | SRP484717 | Illumina NovaSeq 6000 | SRS20187749 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024904 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_2 (21PG50-2) | SAMN39503938 | 17/02/2025 | |||||||||||
| 87 | SRX23311421 | SRP484717 | Illumina NovaSeq 6000 | SRS20187748 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024905 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_20 (21PG40-1) | SAMN39503937 | 17/02/2025 | |||||||||||
| 88 | SRX23311422 | SRP484717 | Illumina NovaSeq 6000 | SRS20187750 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024906 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_200 (21PG57-1) | SAMN39503936 | 17/02/2025 | |||||||||||
| 89 | SRX23311423 | SRP484717 | Illumina NovaSeq 6000 | SRS20187753 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024907 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_201 (21PG57-1) | SAMN39503935 | 17/02/2025 | |||||||||||
| 90 | SRX23310994 | SRP484717 | Illumina NovaSeq 6000 | SRS20187322 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024908 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_202 (21PG57-1) | SAMN39503934 | 17/02/2025 | |||||||||||
| 91 | SRX23310995 | SRP484717 | Illumina NovaSeq 6000 | SRS20187323 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024909 | Late blastocyst: E5.5 | ICM: PE | Late blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_206 (21PG57-1) | SAMN39503933 | 17/02/2025 | |||||||||||
| 92 | SRX23310996 | SRP484717 | Illumina NovaSeq 6000 | SRS20187324 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024910 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_209 (21PG57-1) | SAMN39503932 | 17/02/2025 | |||||||||||
| 93 | SRX23310997 | SRP484717 | Illumina NovaSeq 6000 | SRS20187325 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024911 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_21 (21PG40-1) | SAMN39503931 | 17/02/2025 | |||||||||||
| 94 | SRX23310998 | SRP484717 | Illumina NovaSeq 6000 | SRS20187326 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024912 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_210 (21PG57-1) | SAMN39503930 | 17/02/2025 | |||||||||||
| 95 | SRX23311086 | SRP484717 | Illumina NovaSeq 6000 | SRS20187411 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024913 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_22 (21PG40-1) | SAMN39503929 | 17/02/2025 | |||||||||||
| 96 | SRX23311087 | SRP484717 | Illumina NovaSeq 6000 | SRS20187415 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024914 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_23 (21PG40-1) | SAMN39503928 | 17/02/2025 | |||||||||||
| 97 | SRX23311088 | SRP484717 | Illumina NovaSeq 6000 | SRS20187416 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024915 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_230 (21PG49-3) | SAMN39503927 | 17/02/2025 | |||||||||||
| 98 | SRX23310852 | SRP484717 | Illumina NovaSeq 6000 | SRS20187180 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024916 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_231 (21PG49-3) | SAMN39503926 | 17/02/2025 | |||||||||||
| 99 | SRX23310853 | SRP484717 | Illumina NovaSeq 6000 | SRS20187181 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024917 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_232 (21PG49-3) | SAMN39503925 | 17/02/2025 | |||||||||||
| 100 | SRX23310854 | SRP484717 | Illumina NovaSeq 6000 | SRS20187182 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024918 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_233 (21PG49-3) | SAMN39503924 | 17/02/2025 | |||||||||||
| 101 | SRX23310855 | SRP484717 | Illumina NovaSeq 6000 | SRS20187183 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024919 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_234 (21PG49-3) | SAMN39503923 | 17/02/2025 | |||||||||||
| 102 | SRX23310856 | SRP484717 | Illumina NovaSeq 6000 | SRS20187184 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024920 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_235 (21PG49-3) | SAMN39503922 | 17/02/2025 | |||||||||||
| 103 | SRX23310857 | SRP484717 | Illumina NovaSeq 6000 | SRS20187186 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024921 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_236 (21PG49-3) | SAMN39503921 | 17/02/2025 | |||||||||||
| 104 | SRX23310858 | SRP484717 | Illumina NovaSeq 6000 | SRS20187187 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024922 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_237 (21PG49-3) | SAMN39503920 | 17/02/2025 | |||||||||||
| 105 | SRX23310859 | SRP484717 | Illumina NovaSeq 6000 | SRS20187185 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024923 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_238 (21PG49-3) | SAMN39503919 | 17/02/2025 | |||||||||||
| 106 | SRX23311032 | SRP484717 | Illumina NovaSeq 6000 | SRS20187358 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024924 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_239 (21PG49-3) | SAMN39503918 | 17/02/2025 | |||||||||||
| 107 | SRX23311033 | SRP484717 | Illumina NovaSeq 6000 | SRS20187362 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024925 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_24 (21PG40-1) | SAMN39503917 | 17/02/2025 | |||||||||||
| 108 | SRX23311034 | SRP484717 | Illumina NovaSeq 6000 | SRS20187361 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024926 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_240 (21PG49-3) | SAMN39503916 | 17/02/2025 | |||||||||||
| 109 | SRX23311035 | SRP484717 | Illumina NovaSeq 6000 | SRS20187364 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024927 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_241 (21PG49-3) | SAMN39503915 | 17/02/2025 | |||||||||||
| 110 | SRX23311036 | SRP484717 | Illumina NovaSeq 6000 | SRS20187365 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024928 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_242 (21PG49-3) | SAMN39503914 | 17/02/2025 | |||||||||||
| 111 | SRX23311037 | SRP484717 | Illumina NovaSeq 6000 | SRS20187363 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024929 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_243 (21PG49-3) | SAMN39503913 | 17/02/2025 | |||||||||||
| 112 | SRX23311038 | SRP484717 | Illumina NovaSeq 6000 | SRS20187366 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024930 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_244 (21PG49-3) | SAMN39503912 | 17/02/2025 | |||||||||||
| 113 | SRX23311039 | SRP484717 | Illumina NovaSeq 6000 | SRS20187367 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024931 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_245 (21PG49-3) | SAMN39503911 | 17/02/2025 | |||||||||||
| 114 | SRX23311424 | SRP484717 | Illumina NovaSeq 6000 | SRS20187752 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024932 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_246 (21PG49-3) | SAMN39503910 | 17/02/2025 | |||||||||||
| 115 | SRX23311425 | SRP484717 | Illumina NovaSeq 6000 | SRS20187751 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024933 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_247 (21PG49-3) | SAMN39503909 | 17/02/2025 | |||||||||||
| 116 | SRX23311426 | SRP484717 | Illumina NovaSeq 6000 | SRS20187754 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024934 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_248 (21PG49-3) | SAMN39503908 | 17/02/2025 | |||||||||||
| 117 | SRX23311427 | SRP484717 | Illumina NovaSeq 6000 | SRS20187755 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024935 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_249 (21PG49-3) | SAMN39503907 | 17/02/2025 | |||||||||||
| 118 | SRX23311428 | SRP484717 | Illumina NovaSeq 6000 | SRS20187756 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024936 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_25 (21PG40-1) | SAMN39503906 | 17/02/2025 | |||||||||||
| 119 | SRX23311429 | SRP484717 | Illumina NovaSeq 6000 | SRS20187757 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024937 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_250 (21PG49-3) | SAMN39503905 | 17/02/2025 | |||||||||||
| 120 | SRX23311430 | SRP484717 | Illumina NovaSeq 6000 | SRS20187758 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024938 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_251 (21PG49-3) | SAMN39503904 | 17/02/2025 | |||||||||||
| 121 | SRX23311431 | SRP484717 | Illumina NovaSeq 6000 | SRS20187759 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024939 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_252 (21PG49-3) | SAMN39503903 | 17/02/2025 | |||||||||||
| 122 | SRX23311089 | SRP484717 | Illumina NovaSeq 6000 | SRS20187417 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024940 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_253 (21PG49-3) | SAMN39503902 | 17/02/2025 | |||||||||||
| 123 | SRX23311090 | SRP484717 | Illumina NovaSeq 6000 | SRS20187418 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024941 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_254 (21PG76-2) | SAMN39503901 | 17/02/2025 | |||||||||||
| 124 | SRX23311091 | SRP484717 | Illumina NovaSeq 6000 | SRS20187420 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024942 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_255 (21PG76-2) | SAMN39503900 | 17/02/2025 | |||||||||||
| 125 | SRX23311093 | SRP484717 | Illumina NovaSeq 6000 | SRS20187421 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024944 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_257 (20PG4-2) | SAMN39503898 | 17/02/2025 | |||||||||||
| 126 | SRX23311094 | SRP484717 | Illumina NovaSeq 6000 | SRS20187422 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024945 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_258 (20PG4-2) | SAMN39503897 | 17/02/2025 | |||||||||||
| 127 | SRX23311095 | SRP484717 | Illumina NovaSeq 6000 | SRS20187424 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024946 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_259 (20PG4-2) | SAMN39503896 | 17/02/2025 | |||||||||||
| 128 | SRX23311096 | SRP484717 | Illumina NovaSeq 6000 | SRS20187423 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024947 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_26 (21PG40-1) | SAMN39503895 | 17/02/2025 | |||||||||||
| 129 | SRX23310860 | SRP484717 | Illumina NovaSeq 6000 | SRS20187188 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024948 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_260 (20PG4-2) | SAMN39503894 | 17/02/2025 | |||||||||||
| 130 | SRX23310861 | SRP484717 | Illumina NovaSeq 6000 | SRS20187190 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024949 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_261 (20PG4-2) | SAMN39503893 | 17/02/2025 | |||||||||||
| 131 | SRX23310862 | SRP484717 | Illumina NovaSeq 6000 | SRS20187189 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024950 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_262 (20PG4-2) | SAMN39503892 | 17/02/2025 | |||||||||||
| 132 | SRX23310863 | SRP484717 | Illumina NovaSeq 6000 | SRS20187191 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024951 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_263 (20PG4-2) | SAMN39503891 | 17/02/2025 | |||||||||||
| 133 | SRX23310864 | SRP484717 | Illumina NovaSeq 6000 | SRS20187192 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024952 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_264 (20PG4-2) | SAMN39503890 | 17/02/2025 | |||||||||||
| 134 | SRX23310865 | SRP484717 | Illumina NovaSeq 6000 | SRS20187194 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024953 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_265 (20PG4-2) | SAMN39503889 | 17/02/2025 | |||||||||||
| 135 | SRX23310866 | SRP484717 | Illumina NovaSeq 6000 | SRS20187193 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024954 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_266 (20PG4-2) | SAMN39503888 | 17/02/2025 | |||||||||||
| 136 | SRX23310867 | SRP484717 | Illumina NovaSeq 6000 | SRS20187195 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024955 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_267 (20PG4-2) | SAMN39503887 | 17/02/2025 | |||||||||||
| 137 | SRX23311040 | SRP484717 | Illumina NovaSeq 6000 | SRS20187368 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024956 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_268 (20PG4-2) | SAMN39503886 | 17/02/2025 | |||||||||||
| 138 | SRX23311041 | SRP484717 | Illumina NovaSeq 6000 | SRS20187371 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024957 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_269 (20PG4-2) | SAMN39503885 | 17/02/2025 | |||||||||||
| 139 | SRX23311042 | SRP484717 | Illumina NovaSeq 6000 | SRS20187369 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024958 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_27 (21PG40-1) | SAMN39503884 | 17/02/2025 | |||||||||||
| 140 | SRX23311043 | SRP484717 | Illumina NovaSeq 6000 | SRS20187370 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024959 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_270 (20PG4-2) | SAMN39503883 | 17/02/2025 | |||||||||||
| 141 | SRX23311044 | SRP484717 | Illumina NovaSeq 6000 | SRS20187372 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024960 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_271 (20PG4-2) | SAMN39503882 | 17/02/2025 | |||||||||||
| 142 | SRX23311045 | SRP484717 | Illumina NovaSeq 6000 | SRS20187374 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024961 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_272 (20PG4-2) | SAMN39503881 | 17/02/2025 | |||||||||||
| 143 | SRX23311046 | SRP484717 | Illumina NovaSeq 6000 | SRS20187373 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024962 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_273 (20PG4-2) | SAMN39503880 | 17/02/2025 | |||||||||||
| 144 | SRX23311047 | SRP484717 | Illumina NovaSeq 6000 | SRS20187376 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024963 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_274 (20PG4-2) | SAMN39503879 | 17/02/2025 | |||||||||||
| 145 | SRX23311432 | SRP484717 | Illumina NovaSeq 6000 | SRS20187760 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024964 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_275 (20PG4-2) | SAMN39503878 | 17/02/2025 | |||||||||||
| 146 | SRX23311433 | SRP484717 | Illumina NovaSeq 6000 | SRS20187761 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024965 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_276 (20PG4-2) | SAMN39503877 | 17/02/2025 | |||||||||||
| 147 | SRX23311434 | SRP484717 | Illumina NovaSeq 6000 | SRS20187762 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024966 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_277 (20PG4-2) | SAMN39503876 | 17/02/2025 | |||||||||||
| 148 | SRX23311435 | SRP484717 | Illumina NovaSeq 6000 | SRS20187764 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024967 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_278 (20PG4-2) | SAMN39503875 | 17/02/2025 | |||||||||||
| 149 | SRX23311436 | SRP484717 | Illumina NovaSeq 6000 | SRS20187763 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024968 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_279 (20PG4-2) | SAMN39503874 | 17/02/2025 | |||||||||||
| 150 | SRX23311437 | SRP484717 | Illumina NovaSeq 6000 | SRS20187765 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024969 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_28 (21PG40-1) | SAMN39503873 | 17/02/2025 | |||||||||||
| 151 | SRX23311438 | SRP484717 | Illumina NovaSeq 6000 | SRS20187769 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024970 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_280 (20PG4-2) | SAMN39503872 | 17/02/2025 | |||||||||||
| 152 | SRX23311439 | SRP484717 | Illumina NovaSeq 6000 | SRS20187767 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024971 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_281 (20PG4-2) | SAMN39503871 | 17/02/2025 | |||||||||||
| 153 | SRX23311097 | SRP484717 | Illumina NovaSeq 6000 | SRS20187425 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024972 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_282 (20PG4-2) | SAMN39503870 | 17/02/2025 | |||||||||||
| 154 | SRX23311098 | SRP484717 | Illumina NovaSeq 6000 | SRS20187426 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024973 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_283 (20PG4-2) | SAMN39503869 | 17/02/2025 | |||||||||||
| 155 | SRX23311099 | SRP484717 | Illumina NovaSeq 6000 | SRS20187427 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024974 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_284 (20PG4-2) | SAMN39503868 | 17/02/2025 | |||||||||||
| 156 | SRX23311100 | SRP484717 | Illumina NovaSeq 6000 | SRS20187429 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024975 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_285 (20PG4-2) | SAMN39503867 | 17/02/2025 | |||||||||||
| 157 | SRX23311101 | SRP484717 | Illumina NovaSeq 6000 | SRS20187430 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024976 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_286 (20PG4-2) | SAMN39503866 | 17/02/2025 | |||||||||||
| 158 | SRX23311102 | SRP484717 | Illumina NovaSeq 6000 | SRS20187428 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024977 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_287 (20PG4-2) | SAMN39503865 | 17/02/2025 | |||||||||||
| 159 | SRX23311103 | SRP484717 | Illumina NovaSeq 6000 | SRS20187431 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024978 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_288 (21PG57-1) | SAMN39503864 | 17/02/2025 | |||||||||||
| 160 | SRX23310868 | SRP484717 | Illumina NovaSeq 6000 | SRS20187197 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024980 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_29 (21PG40-1) | SAMN39503862 | 17/02/2025 | |||||||||||
| 161 | SRX23310869 | SRP484717 | Illumina NovaSeq 6000 | SRS20187196 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024981 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_290 (20PG4-1) | SAMN39503861 | 17/02/2025 | |||||||||||
| 162 | SRX23310870 | SRP484717 | Illumina NovaSeq 6000 | SRS20187198 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024982 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_291 (20PG4-1) | SAMN39503860 | 17/02/2025 | |||||||||||
| 163 | SRX23310871 | SRP484717 | Illumina NovaSeq 6000 | SRS20187199 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024983 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_292 (20PG4-1) | SAMN39503859 | 17/02/2025 | |||||||||||
| 164 | SRX23310872 | SRP484717 | Illumina NovaSeq 6000 | SRS20187202 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024984 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_293 (20PG4-1) | SAMN39503858 | 17/02/2025 | |||||||||||
| 165 | SRX23310873 | SRP484717 | Illumina NovaSeq 6000 | SRS20187200 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024985 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_294 (20PG4-1) | SAMN39503857 | 17/02/2025 | |||||||||||
| 166 | SRX23310874 | SRP484717 | Illumina NovaSeq 6000 | SRS20187201 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024986 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_295 (20PG4-1) | SAMN39503856 | 17/02/2025 | |||||||||||
| 167 | SRX23310875 | SRP484717 | Illumina NovaSeq 6000 | SRS20187203 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024987 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_296 (20PG4-1) | SAMN39503855 | 17/02/2025 | |||||||||||
| 168 | SRX23311048 | SRP484717 | Illumina NovaSeq 6000 | SRS20187375 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024988 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_297 (20PG4-1) | SAMN39503854 | 17/02/2025 | |||||||||||
| 169 | SRX23311049 | SRP484717 | Illumina NovaSeq 6000 | SRS20187377 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024989 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_298 (20PG4-1) | SAMN39503853 | 17/02/2025 | |||||||||||
| 170 | SRX23311050 | SRP484717 | Illumina NovaSeq 6000 | SRS20187378 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024990 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_299 (20PG4-1) | SAMN39503852 | 17/02/2025 | |||||||||||
| 171 | SRX23311051 | SRP484717 | Illumina NovaSeq 6000 | SRS20187379 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024991 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_3 (21PG50-2) | SAMN39503851 | 17/02/2025 | |||||||||||
| 172 | SRX23311052 | SRP484717 | Illumina NovaSeq 6000 | SRS20187380 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024992 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_30 (21PG40-1) | SAMN39503850 | 17/02/2025 | |||||||||||
| 173 | SRX23311053 | SRP484717 | Illumina NovaSeq 6000 | SRS20187381 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024993 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_300 (20PG4-1) | SAMN39503849 | 17/02/2025 | |||||||||||
| 174 | SRX23311054 | SRP484717 | Illumina NovaSeq 6000 | SRS20187382 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024994 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_301 (20PG4-1) | SAMN39503848 | 17/02/2025 | |||||||||||
| 175 | SRX23311055 | SRP484717 | Illumina NovaSeq 6000 | SRS20187383 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024995 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_302 (20PG4-1) | SAMN39503847 | 17/02/2025 | |||||||||||
| 176 | SRX23311441 | SRP484717 | Illumina NovaSeq 6000 | SRS20187768 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024997 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_304 (20PG4-1) | SAMN39503845 | 17/02/2025 | |||||||||||
| 177 | SRX23311442 | SRP484717 | Illumina NovaSeq 6000 | SRS20187772 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024998 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_305 (20PG4-1) | SAMN39503844 | 17/02/2025 | |||||||||||
| 178 | SRX23311443 | SRP484717 | Illumina NovaSeq 6000 | SRS20187770 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024999 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_306 (20PG4-1) | SAMN39503843 | 17/02/2025 | |||||||||||
| 179 | SRX23311444 | SRP484717 | Illumina NovaSeq 6000 | SRS20187771 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025000 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_307 (20PG4-1) | SAMN39503842 | 17/02/2025 | |||||||||||
| 180 | SRX23311446 | SRP484717 | Illumina NovaSeq 6000 | SRS20187774 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025002 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_309 (20PG4-1) | SAMN39503840 | 17/02/2025 | |||||||||||
| 181 | SRX23311447 | SRP484717 | Illumina NovaSeq 6000 | SRS20187775 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025003 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_31 (21PG40-1) | SAMN39503839 | 17/02/2025 | |||||||||||
| 182 | SRX23311106 | SRP484717 | Illumina NovaSeq 6000 | SRS20187435 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025005 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_311 (20PG4-1) | SAMN39503837 | 17/02/2025 | |||||||||||
| 183 | SRX23311109 | SRP484717 | Illumina NovaSeq 6000 | SRS20187437 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025008 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_314 (21PG75-1) | SAMN39503834 | 17/02/2025 | |||||||||||
| 184 | SRX23311110 | SRP484717 | Illumina NovaSeq 6000 | SRS20187436 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025009 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_315 (21PG75-1) | SAMN39503833 | 17/02/2025 | |||||||||||
| 185 | SRX23311111 | SRP484717 | Illumina NovaSeq 6000 | SRS20187440 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025010 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_316 (21PG75-1) | SAMN39503832 | 17/02/2025 | |||||||||||
| 186 | SRX23310877 | SRP484717 | Illumina NovaSeq 6000 | SRS20187204 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025013 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_319 (21PG75-1) | SAMN39503829 | 17/02/2025 | |||||||||||
| 187 | SRX23310878 | SRP484717 | Illumina NovaSeq 6000 | SRS20187206 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025014 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_32 (21PG40-1) | SAMN39503828 | 17/02/2025 | |||||||||||
| 188 | SRX23310879 | SRP484717 | Illumina NovaSeq 6000 | SRS20187207 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025015 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_320 (21PG75-1) | SAMN39503827 | 17/02/2025 | |||||||||||
| 189 | SRX23310880 | SRP484717 | Illumina NovaSeq 6000 | SRS20187208 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025016 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_321 (21PG75-1) | SAMN39503826 | 17/02/2025 | |||||||||||
| 190 | SRX23310881 | SRP484717 | Illumina NovaSeq 6000 | SRS20187209 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025017 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_322 (21PG75-1) | SAMN39503825 | 17/02/2025 | |||||||||||
| 191 | SRX23310882 | SRP484717 | Illumina NovaSeq 6000 | SRS20187212 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025018 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_323 (21PG75-1) | SAMN39503824 | 17/02/2025 | |||||||||||
| 192 | SRX23310883 | SRP484717 | Illumina NovaSeq 6000 | SRS20187211 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025019 | Late blastocyst: E6 | TE: polar | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_324 (21PG75-1) | SAMN39503823 | 17/02/2025 | |||||||||||
| 193 | SRX23311056 | SRP484717 | Illumina NovaSeq 6000 | SRS20187384 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025020 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_325 (21PG75-1) | SAMN39503822 | 17/02/2025 | |||||||||||
| 194 | SRX23311057 | SRP484717 | Illumina NovaSeq 6000 | SRS20187386 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025021 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_326 (21PG75-1) | SAMN39503821 | 17/02/2025 | |||||||||||
| 195 | SRX23311059 | SRP484717 | Illumina NovaSeq 6000 | SRS20187385 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025023 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_328 (21PG75-1) | SAMN39503819 | 17/02/2025 | |||||||||||
| 196 | SRX23311060 | SRP484717 | Illumina NovaSeq 6000 | SRS20187389 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025024 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_329 (21PG75-1) | SAMN39503818 | 17/02/2025 | |||||||||||
| 197 | SRX23311061 | SRP484717 | Illumina NovaSeq 6000 | SRS20187390 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025025 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_33 (21PG40-1) | SAMN39503817 | 17/02/2025 | |||||||||||
| 198 | SRX23311062 | SRP484717 | Illumina NovaSeq 6000 | SRS20187388 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025026 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_330 (21PG75-1) | SAMN39503816 | 17/02/2025 | |||||||||||
| 199 | SRX23311063 | SRP484717 | Illumina NovaSeq 6000 | SRS20187391 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025027 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_331 (21PG75-1) | SAMN39503815 | 17/02/2025 | |||||||||||
| 200 | SRX23311448 | SRP484717 | Illumina NovaSeq 6000 | SRS20187776 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025028 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_332 (21PG75-1) | SAMN39503814 | 17/02/2025 | |||||||||||
| 201 | SRX23311449 | SRP484717 | Illumina NovaSeq 6000 | SRS20187777 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025029 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_333 (21PG75-1) | SAMN39503813 | 17/02/2025 | |||||||||||
| 202 | SRX23311450 | SRP484717 | Illumina NovaSeq 6000 | SRS20187778 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025030 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_334 (21PG75-1) | SAMN39503812 | 17/02/2025 | |||||||||||
| 203 | SRX23311451 | SRP484717 | Illumina NovaSeq 6000 | SRS20187780 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025031 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_335 (21PG52-2) | SAMN39503811 | 17/02/2025 | |||||||||||
| 204 | SRX23311452 | SRP484717 | Illumina NovaSeq 6000 | SRS20187779 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025032 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_336 (21PG52-2) | SAMN39503810 | 17/02/2025 | |||||||||||
| 205 | SRX23311453 | SRP484717 | Illumina NovaSeq 6000 | SRS20187781 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025033 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_337 (21PG52-2) | SAMN39503809 | 17/02/2025 | |||||||||||
| 206 | SRX23311454 | SRP484717 | Illumina NovaSeq 6000 | SRS20187782 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025034 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_338 (21PG52-2) | SAMN39503808 | 17/02/2025 | |||||||||||
| 207 | SRX23311113 | SRP484717 | Illumina NovaSeq 6000 | SRS20187442 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025036 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_34 (21PG40-1) | SAMN39503806 | 17/02/2025 | |||||||||||
| 208 | SRX23311114 | SRP484717 | Illumina NovaSeq 6000 | SRS20187441 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025037 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_340 (21PG52-2) | SAMN39503805 | 17/02/2025 | |||||||||||
| 209 | SRX23311115 | SRP484717 | Illumina NovaSeq 6000 | SRS20187443 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025038 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_341 (21PG52-2) | SAMN39503804 | 17/02/2025 | |||||||||||
| 210 | SRX23311116 | SRP484717 | Illumina NovaSeq 6000 | SRS20187444 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025039 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_342 (21PG52-2) | SAMN39503803 | 17/02/2025 | |||||||||||
| 211 | SRX23311117 | SRP484717 | Illumina NovaSeq 6000 | SRS20187446 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025040 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_343 (21PG52-2) | SAMN39503802 | 17/02/2025 | |||||||||||
| 212 | SRX23311118 | SRP484717 | Illumina NovaSeq 6000 | SRS20187445 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025041 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_344 (21PG52-2) | SAMN39503801 | 17/02/2025 | |||||||||||
| 213 | SRX23311119 | SRP484717 | Illumina NovaSeq 6000 | SRS20187447 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025042 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_345 (21PG52-2) | SAMN39503800 | 17/02/2025 | |||||||||||
| 214 | SRX23311120 | SRP484717 | Illumina NovaSeq 6000 | SRS20187448 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025043 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_346 (21PG52-2) | SAMN39503799 | 17/02/2025 | |||||||||||
| 215 | SRX23310884 | SRP484717 | Illumina NovaSeq 6000 | SRS20187210 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025044 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_347 (21PG52-2) | SAMN39503798 | 17/02/2025 | |||||||||||
| 216 | SRX23310885 | SRP484717 | Illumina NovaSeq 6000 | SRS20187213 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025045 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_348 (21PG52-2) | SAMN39503797 | 17/02/2025 | |||||||||||
| 217 | SRX23310886 | SRP484717 | Illumina NovaSeq 6000 | SRS20187215 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025046 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_349 (21PG52-2) | SAMN39503796 | 17/02/2025 | |||||||||||
| 218 | SRX23310887 | SRP484717 | Illumina NovaSeq 6000 | SRS20187214 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025047 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_35 (21PG40-1) | SAMN39503795 | 17/02/2025 | |||||||||||
| 219 | SRX23310889 | SRP484717 | Illumina NovaSeq 6000 | SRS20187217 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025049 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_351 (21PG52-2) | SAMN39503793 | 17/02/2025 | |||||||||||
| 220 | SRX23310890 | SRP484717 | Illumina NovaSeq 6000 | SRS20187218 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025050 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_352 (21PG52-2) | SAMN39503792 | 17/02/2025 | |||||||||||
| 221 | SRX23310891 | SRP484717 | Illumina NovaSeq 6000 | SRS20187219 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025051 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_353 (21PG41-1) | SAMN39503791 | 17/02/2025 | |||||||||||
| 222 | SRX23311064 | SRP484717 | Illumina NovaSeq 6000 | SRS20187392 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025052 | 16-32 cell: E4.75 | Prelineage: Morula | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_354 (21PG41-1) | SAMN39503790 | 17/02/2025 | |||||||||||
| 223 | SRX23311065 | SRP484717 | Illumina NovaSeq 6000 | SRS20187393 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025053 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_355 (21PG41-1) | SAMN39503789 | 17/02/2025 | |||||||||||
| 224 | SRX23311066 | SRP484717 | Illumina NovaSeq 6000 | SRS20187395 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025054 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_356 (21PG41-1) | SAMN39503788 | 17/02/2025 | |||||||||||
| 225 | SRX23311067 | SRP484717 | Illumina NovaSeq 6000 | SRS20187396 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025055 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_357 (21PG41-1) | SAMN39503787 | 17/02/2025 | |||||||||||
| 226 | SRX23311068 | SRP484717 | Illumina NovaSeq 6000 | SRS20187394 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025056 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_358 (21PG41-1) | SAMN39503786 | 17/02/2025 | |||||||||||
| 227 | SRX23311069 | SRP484717 | Illumina NovaSeq 6000 | SRS20187397 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025057 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_359 (21PG41-1) | SAMN39503785 | 17/02/2025 | |||||||||||
| 228 | SRX23311070 | SRP484717 | Illumina NovaSeq 6000 | SRS20187398 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025058 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_36 (21PG40-1) | SAMN39503784 | 17/02/2025 | |||||||||||
| 229 | SRX23311071 | SRP484717 | Illumina NovaSeq 6000 | SRS20187399 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025059 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_360 (21PG41-1) | SAMN39503783 | 17/02/2025 | |||||||||||
| 230 | SRX23311458 | SRP484717 | Illumina NovaSeq 6000 | SRS20187786 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025062 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_37 (21PG40-1) | SAMN39503780 | 17/02/2025 | |||||||||||
| 231 | SRX23311459 | SRP484717 | Illumina NovaSeq 6000 | SRS20187787 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025063 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_38 (21PG40-1) | SAMN39503779 | 17/02/2025 | |||||||||||
| 232 | SRX23311460 | SRP484717 | Illumina NovaSeq 6000 | SRS20187788 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025064 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_39 (21PG40-1) | SAMN39503778 | 17/02/2025 | |||||||||||
| 233 | SRX23311461 | SRP484717 | Illumina NovaSeq 6000 | SRS20187789 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025065 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_4 (21PG50-2) | SAMN39503777 | 17/02/2025 | |||||||||||
| 234 | SRX23311462 | SRP484717 | Illumina NovaSeq 6000 | SRS20187791 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025066 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_40 (21PG40-1) | SAMN39503776 | 17/02/2025 | |||||||||||
| 235 | SRX23311463 | SRP484717 | Illumina NovaSeq 6000 | SRS20187790 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025067 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_41 (21PG40-1) | SAMN39503775 | 17/02/2025 | |||||||||||
| 236 | SRX23311121 | SRP484717 | Illumina NovaSeq 6000 | SRS20187449 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025068 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_42 (21PG40-1) | SAMN39503774 | 17/02/2025 | |||||||||||
| 237 | SRX23311122 | SRP484717 | Illumina NovaSeq 6000 | SRS20187450 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025069 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_43 (21PG51-2) | SAMN39503773 | 17/02/2025 | |||||||||||
| 238 | SRX23311123 | SRP484717 | Illumina NovaSeq 6000 | SRS20187452 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025070 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_44 (21PG51-2) | SAMN39503772 | 17/02/2025 | |||||||||||
| 239 | SRX23311124 | SRP484717 | Illumina NovaSeq 6000 | SRS20187451 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025071 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_45 (21PG51-2) | SAMN39503771 | 17/02/2025 | |||||||||||
| 240 | SRX23311125 | SRP484717 | Illumina NovaSeq 6000 | SRS20187453 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025072 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_46 (21PG51-2) | SAMN39503770 | 17/02/2025 | |||||||||||
| 241 | SRX23311126 | SRP484717 | Illumina NovaSeq 6000 | SRS20187455 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025073 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_47 (21PG51-2) | SAMN39503769 | 17/02/2025 | |||||||||||
| 242 | SRX23311127 | SRP484717 | Illumina NovaSeq 6000 | SRS20187454 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025074 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_48 (21PG51-2) | SAMN39503768 | 17/02/2025 | |||||||||||
| 243 | SRX23311128 | SRP484717 | Illumina NovaSeq 6000 | SRS20187456 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025075 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_49 (21PG51-2) | SAMN39503767 | 17/02/2025 | |||||||||||
| 244 | SRX23310892 | SRP484717 | Illumina NovaSeq 6000 | SRS20187220 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025076 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_5 (21PG50-2) | SAMN39503766 | 17/02/2025 | |||||||||||
| 245 | SRX23310893 | SRP484717 | Illumina NovaSeq 6000 | SRS20187221 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025077 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_50 (21PG51-2) | SAMN39503765 | 17/02/2025 | |||||||||||
| 246 | SRX23310894 | SRP484717 | Illumina NovaSeq 6000 | SRS20187222 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025078 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_51 (21PG51-2) | SAMN39503764 | 17/02/2025 | |||||||||||
| 247 | SRX23310895 | SRP484717 | Illumina NovaSeq 6000 | SRS20187224 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025079 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_52 (21PG51-2) | SAMN39503763 | 17/02/2025 | |||||||||||
| 248 | SRX23310896 | SRP484717 | Illumina NovaSeq 6000 | SRS20187223 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025080 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_53 (21PG51-2) | SAMN39503762 | 17/02/2025 | |||||||||||
| 249 | SRX23310897 | SRP484717 | Illumina NovaSeq 6000 | SRS20187226 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025081 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_54 (21PG51-2) | SAMN39503761 | 17/02/2025 | |||||||||||
| 250 | SRX23310898 | SRP484717 | Illumina NovaSeq 6000 | SRS20187225 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025082 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_55 (21PG51-2) | SAMN39503760 | 17/02/2025 | |||||||||||
| 251 | SRX23310899 | SRP484717 | Illumina NovaSeq 6000 | SRS20187227 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025083 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_56 (21PG51-2) | SAMN39503759 | 17/02/2025 | |||||||||||
| 252 | SRX23311072 | SRP484717 | Illumina NovaSeq 6000 | SRS20187401 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025084 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_57 (21PG51-2) | SAMN39503758 | 17/02/2025 | |||||||||||
| 253 | SRX23311073 | SRP484717 | Illumina NovaSeq 6000 | SRS20187402 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025085 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_58 (21PG51-2) | SAMN39503757 | 17/02/2025 | |||||||||||
| 254 | SRX23311074 | SRP484717 | Illumina NovaSeq 6000 | SRS20187400 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025086 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_59 (21PG51-2) | SAMN39503756 | 17/02/2025 | |||||||||||
| 255 | SRX23311075 | SRP484717 | Illumina NovaSeq 6000 | SRS20187403 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025087 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_6 (21PG50-2) | SAMN39503755 | 17/02/2025 | |||||||||||
| 256 | SRX23311076 | SRP484717 | Illumina NovaSeq 6000 | SRS20187405 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025088 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_60 (21PG51-2) | SAMN39503754 | 17/02/2025 | |||||||||||
| 257 | SRX23311077 | SRP484717 | Illumina NovaSeq 6000 | SRS20187404 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025089 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_61 (21PG51-2) | SAMN39503753 | 17/02/2025 | |||||||||||
| 258 | SRX23311078 | SRP484717 | Illumina NovaSeq 6000 | SRS20187406 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025090 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_62 (21PG51-3) | SAMN39503752 | 17/02/2025 | |||||||||||
| 259 | SRX23311079 | SRP484717 | Illumina NovaSeq 6000 | SRS20187408 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025091 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_63 (21PG51-3) | SAMN39503751 | 17/02/2025 | |||||||||||
| 260 | SRX23311464 | SRP484717 | Illumina NovaSeq 6000 | SRS20187792 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025092 | Early blastocyst: E4.5 | ICM: PE | Early blastocyst: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_64 (21PG51-3) | SAMN39503750 | 17/02/2025 | |||||||||||
| 261 | SRX23311465 | SRP484717 | Illumina NovaSeq 6000 | SRS20187793 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025093 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_65 (21PG51-3) | SAMN39503749 | 17/02/2025 | |||||||||||
| 262 | SRX23311466 | SRP484717 | Illumina NovaSeq 6000 | SRS20187794 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025094 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_66 (21PG51-3) | SAMN39503748 | 17/02/2025 | |||||||||||
| 263 | SRX23311467 | SRP484717 | Illumina NovaSeq 6000 | SRS20187797 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025095 | Early blastocyst: E4.5 | ICM: ICM | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_67 (21PG51-3) | SAMN39503747 | 17/02/2025 | |||||||||||
| 264 | SRX23311468 | SRP484717 | Illumina NovaSeq 6000 | SRS20187795 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025096 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_68 (21PG51-3) | SAMN39503746 | 17/02/2025 | |||||||||||
| 265 | SRX23311469 | SRP484717 | Illumina NovaSeq 6000 | SRS20187796 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025097 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_69 (21PG51-3) | SAMN39503745 | 17/02/2025 | |||||||||||
| 266 | SRX23311470 | SRP484717 | Illumina NovaSeq 6000 | SRS20187798 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025098 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_7 (21PG50-2) | SAMN39503744 | 17/02/2025 | |||||||||||
| 267 | SRX23311471 | SRP484717 | Illumina NovaSeq 6000 | SRS20187799 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025099 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_70 (21PG51-3) | SAMN39503743 | 17/02/2025 | |||||||||||
| 268 | SRX23311129 | SRP484717 | Illumina NovaSeq 6000 | SRS20187457 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025100 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_71 (21PG51-3) | SAMN39503742 | 17/02/2025 | |||||||||||
| 269 | SRX23311130 | SRP484717 | Illumina NovaSeq 6000 | SRS20187458 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025101 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_72 (21PG51-3) | SAMN39503741 | 17/02/2025 | |||||||||||
| 270 | SRX23311131 | SRP484717 | Illumina NovaSeq 6000 | SRS20187459 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025102 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_73 (21PG51-3) | SAMN39503740 | 17/02/2025 | |||||||||||
| 271 | SRX23311132 | SRP484717 | Illumina NovaSeq 6000 | SRS20187461 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025103 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_74 (21PG76-1) | SAMN39503739 | 17/02/2025 | |||||||||||
| 272 | SRX23311133 | SRP484717 | Illumina NovaSeq 6000 | SRS20187460 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025104 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_75 (21PG76-1) | SAMN39503738 | 17/02/2025 | |||||||||||
| 273 | SRX23311134 | SRP484717 | Illumina NovaSeq 6000 | SRS20187462 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025105 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_76 (21PG76-1) | SAMN39503737 | 17/02/2025 | |||||||||||
| 274 | SRX23310901 | SRP484717 | Illumina NovaSeq 6000 | SRS20187229 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025109 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_8 (21PG50-2) | SAMN39503733 | 17/02/2025 | |||||||||||
| 275 | SRX23310902 | SRP484717 | Illumina NovaSeq 6000 | SRS20187230 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025110 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_80 (21PG76-2) | SAMN39503732 | 17/02/2025 | |||||||||||
| 276 | SRX23311082 | SRP484717 | Illumina NovaSeq 6000 | SRS20187410 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025118 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_88 (21PG76-2) | SAMN39503724 | 17/02/2025 | |||||||||||
| 277 | SRX23311083 | SRP484717 | Illumina NovaSeq 6000 | SRS20187412 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025119 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_89 (21PG76-2) | SAMN39503723 | 17/02/2025 | |||||||||||
| 278 | SRX23311084 | SRP484717 | Illumina NovaSeq 6000 | SRS20187413 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025120 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_9 (21PG39-1) | SAMN39503722 | 17/02/2025 | |||||||||||
| 279 | SRX23311085 | SRP484717 | Illumina NovaSeq 6000 | SRS20187414 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025121 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_90 (21PG76-2) | SAMN39503721 | 17/02/2025 | |||||||||||
| 280 | SRX23311472 | SRP484717 | Illumina NovaSeq 6000 | SRS20187800 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025124 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_93 (21PG76-2) | SAMN39503718 | 17/02/2025 | |||||||||||
| 281 | SRX23311473 | SRP484717 | Illumina NovaSeq 6000 | SRS20187803 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025125 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_94 (21PG76-2) | SAMN39503717 | 17/02/2025 | |||||||||||
| 282 | SRX23311475 | SRP484717 | Illumina NovaSeq 6000 | SRS20187804 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025127 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_96 (21PG76-2) | SAMN39503715 | 17/02/2025 | |||||||||||
| 283 | SRX23311476 | SRP484717 | Illumina NovaSeq 6000 | SRS20187802 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025128 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_97 (21PG55-2) | SAMN39503714 | 17/02/2025 | |||||||||||
| 284 | SRX23311477 | SRP484717 | Illumina NovaSeq 6000 | SRS20187805 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025129 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_98 (21PG55-2) | SAMN39503713 | 17/02/2025 | |||||||||||
| 285 | SRX23311478 | SRP484717 | Illumina NovaSeq 6000 | SRS20187806 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025130 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_1_99 (21PG55-2) | SAMN39503712 | 17/02/2025 | |||||||||||
| 286 | SRX23311479 | SRP484717 | Illumina NovaSeq 6000 | SRS20187808 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025131 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_1 (21PG50-3) | SAMN39503711 | 17/02/2025 | |||||||||||
| 287 | SRX23311137 | SRP484717 | Illumina NovaSeq 6000 | SRS20187463 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025132 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_10 (21PG77-1) | SAMN39503710 | 17/02/2025 | |||||||||||
| 288 | SRX23311138 | SRP484717 | Illumina NovaSeq 6000 | SRS20187466 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025133 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_100 (21PG55-3) | SAMN39503709 | 17/02/2025 | |||||||||||
| 289 | SRX23311139 | SRP484717 | Illumina NovaSeq 6000 | SRS20187467 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025134 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_101 (21PG55-3) | SAMN39503708 | 17/02/2025 | |||||||||||
| 290 | SRX23311140 | SRP484717 | Illumina NovaSeq 6000 | SRS20187469 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025135 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_102 (21PG55-3) | SAMN39503707 | 17/02/2025 | |||||||||||
| 291 | SRX23311141 | SRP484717 | Illumina NovaSeq 6000 | SRS20187470 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025136 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_103 (21PG55-3) | SAMN39503706 | 17/02/2025 | |||||||||||
| 292 | SRX23311142 | SRP484717 | Illumina NovaSeq 6000 | SRS20187468 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025137 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_104 (21PG55-3) | SAMN39503705 | 17/02/2025 | |||||||||||
| 293 | SRX23311143 | SRP484717 | Illumina NovaSeq 6000 | SRS20187472 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025138 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_105 (21PG55-3) | SAMN39503704 | 17/02/2025 | |||||||||||
| 294 | SRX23311144 | SRP484717 | Illumina NovaSeq 6000 | SRS20187471 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025139 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_106 (21PG55-3) | SAMN39503703 | 17/02/2025 | |||||||||||
| 295 | SRX23310908 | SRP484717 | Illumina NovaSeq 6000 | SRS20187237 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025140 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_107 (21PG55-3) | SAMN39503702 | 17/02/2025 | |||||||||||
| 296 | SRX23310909 | SRP484717 | Illumina NovaSeq 6000 | SRS20187236 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025141 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_108 (21PG55-3) | SAMN39503701 | 17/02/2025 | |||||||||||
| 297 | SRX23310910 | SRP484717 | Illumina NovaSeq 6000 | SRS20187238 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025142 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_109 (21PG55-3) | SAMN39503700 | 17/02/2025 | |||||||||||
| 298 | SRX23310911 | SRP484717 | Illumina NovaSeq 6000 | SRS20187239 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025143 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_11 (21PG77-1) | SAMN39503699 | 17/02/2025 | |||||||||||
| 299 | SRX23311312 | SRP484717 | Illumina NovaSeq 6000 | SRS20187640 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025144 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_110 (21PG55-3) | SAMN39503698 | 17/02/2025 | |||||||||||
| 300 | SRX23311313 | SRP484717 | Illumina NovaSeq 6000 | SRS20187641 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025145 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_111 (21PG55-3) | SAMN39503697 | 17/02/2025 | |||||||||||
| 301 | SRX23311314 | SRP484717 | Illumina NovaSeq 6000 | SRS20187643 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025146 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_112 (21PG55-3) | SAMN39503696 | 17/02/2025 | |||||||||||
| 302 | SRX23311175 | SRP484717 | Illumina NovaSeq 6000 | SRS20187504 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025148 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_114 (21PG55-3) | SAMN39503694 | 17/02/2025 | |||||||||||
| 303 | SRX23311176 | SRP484717 | Illumina NovaSeq 6000 | SRS20187503 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025149 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_115 (21PG55-3) | SAMN39503693 | 17/02/2025 | |||||||||||
| 304 | SRX23311177 | SRP484717 | Illumina NovaSeq 6000 | SRS20187505 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025150 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_116 (21PG49-1) | SAMN39503692 | 17/02/2025 | |||||||||||
| 305 | SRX23311178 | SRP484717 | Illumina NovaSeq 6000 | SRS20187506 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025151 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_117 (21PG49-1) | SAMN39503691 | 17/02/2025 | |||||||||||
| 306 | SRX23311179 | SRP484717 | Illumina NovaSeq 6000 | SRS20187507 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025152 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_118 (21PG49-1) | SAMN39503690 | 17/02/2025 | |||||||||||
| 307 | SRX23311180 | SRP484717 | Illumina NovaSeq 6000 | SRS20187508 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025153 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_119 (21PG49-1) | SAMN39503689 | 17/02/2025 | |||||||||||
| 308 | SRX23311181 | SRP484717 | Illumina NovaSeq 6000 | SRS20187509 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025154 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_12 (21PG77-1) | SAMN39503688 | 17/02/2025 | |||||||||||
| 309 | SRX23311182 | SRP484717 | Illumina NovaSeq 6000 | SRS20187510 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025155 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_120 (21PG49-1) | SAMN39503687 | 17/02/2025 | |||||||||||
| 310 | SRX23311480 | SRP484717 | Illumina NovaSeq 6000 | SRS20187807 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025156 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_121 (21PG49-1) | SAMN39503686 | 17/02/2025 | |||||||||||
| 311 | SRX23311481 | SRP484717 | Illumina NovaSeq 6000 | SRS20187809 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025157 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_122 (21PG49-1) | SAMN39503685 | 17/02/2025 | |||||||||||
| 312 | SRX23311483 | SRP484717 | Illumina NovaSeq 6000 | SRS20187811 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025159 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_124 (21PG49-1) | SAMN39503683 | 17/02/2025 | |||||||||||
| 313 | SRX23311484 | SRP484717 | Illumina NovaSeq 6000 | SRS20187812 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025160 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_125 (21PG49-1) | SAMN39503682 | 17/02/2025 | |||||||||||
| 314 | SRX23311485 | SRP484717 | Illumina NovaSeq 6000 | SRS20187813 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025161 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_126 (21PG49-1) | SAMN39503681 | 17/02/2025 | |||||||||||
| 315 | SRX23310912 | SRP484717 | Illumina NovaSeq 6000 | SRS20187240 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025162 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_127 (21PG49-1) | SAMN39503680 | 17/02/2025 | |||||||||||
| 316 | SRX23310913 | SRP484717 | Illumina NovaSeq 6000 | SRS20187241 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025163 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_128 (21PG49-1) | SAMN39503679 | 17/02/2025 | |||||||||||
| 317 | SRX23311146 | SRP484717 | Illumina NovaSeq 6000 | SRS20187474 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025165 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_13 (21PG77-1) | SAMN39503677 | 17/02/2025 | |||||||||||
| 318 | SRX23311148 | SRP484717 | Illumina NovaSeq 6000 | SRS20187475 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025167 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_131 (21PG49-2) | SAMN39503675 | 17/02/2025 | |||||||||||
| 319 | SRX23311149 | SRP484717 | Illumina NovaSeq 6000 | SRS20187480 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025168 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_132 (21PG49-2) | SAMN39503674 | 17/02/2025 | |||||||||||
| 320 | SRX23311150 | SRP484717 | Illumina NovaSeq 6000 | SRS20187479 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025169 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_133 (21PG49-2) | SAMN39503673 | 17/02/2025 | |||||||||||
| 321 | SRX23311151 | SRP484717 | Illumina NovaSeq 6000 | SRS20187477 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025170 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_134 (21PG49-2) | SAMN39503672 | 17/02/2025 | |||||||||||
| 322 | SRX23311152 | SRP484717 | Illumina NovaSeq 6000 | SRS20187478 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025171 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_135 (21PG49-2) | SAMN39503671 | 17/02/2025 | |||||||||||
| 323 | SRX23311316 | SRP484717 | Illumina NovaSeq 6000 | SRS20187642 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025172 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_136 (21PG49-2) | SAMN39503670 | 17/02/2025 | |||||||||||
| 324 | SRX23311317 | SRP484717 | Illumina NovaSeq 6000 | SRS20187645 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025173 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_137 (21PG49-2) | SAMN39503669 | 17/02/2025 | |||||||||||
| 325 | SRX23311318 | SRP484717 | Illumina NovaSeq 6000 | SRS20187646 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025174 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_138 (21PG49-2) | SAMN39503668 | 17/02/2025 | |||||||||||
| 326 | SRX23311319 | SRP484717 | Illumina NovaSeq 6000 | SRS20187648 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025175 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_139 (21PG49-2) | SAMN39503667 | 17/02/2025 | |||||||||||
| 327 | SRX23311320 | SRP484717 | Illumina NovaSeq 6000 | SRS20187647 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025176 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_14 (21PG77-1) | SAMN39503666 | 17/02/2025 | |||||||||||
| 328 | SRX23311321 | SRP484717 | Illumina NovaSeq 6000 | SRS20187649 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025177 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_140 (21PG49-2) | SAMN39503665 | 17/02/2025 | |||||||||||
| 329 | SRX23311322 | SRP484717 | Illumina NovaSeq 6000 | SRS20187650 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025178 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_141 (21PG53-2) | SAMN39503664 | 17/02/2025 | |||||||||||
| 330 | SRX23311323 | SRP484717 | Illumina NovaSeq 6000 | SRS20187652 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025179 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_142 (21PG53-2) | SAMN39503663 | 17/02/2025 | |||||||||||
| 331 | SRX23311183 | SRP484717 | Illumina NovaSeq 6000 | SRS20187511 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025180 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_143 (21PG53-2) | SAMN39503662 | 17/02/2025 | |||||||||||
| 332 | SRX23311184 | SRP484717 | Illumina NovaSeq 6000 | SRS20187512 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025181 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_144 (21PG53-2) | SAMN39503661 | 17/02/2025 | |||||||||||
| 333 | SRX23311185 | SRP484717 | Illumina NovaSeq 6000 | SRS20187514 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025182 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_145 (21PG53-2) | SAMN39503660 | 17/02/2025 | |||||||||||
| 334 | SRX23311186 | SRP484717 | Illumina NovaSeq 6000 | SRS20187513 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025183 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_146 (21PG53-2) | SAMN39503659 | 17/02/2025 | |||||||||||
| 335 | SRX23311187 | SRP484717 | Illumina NovaSeq 6000 | SRS20187518 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025184 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_147 (21PG53-2) | SAMN39503658 | 17/02/2025 | |||||||||||
| 336 | SRX23311188 | SRP484717 | Illumina NovaSeq 6000 | SRS20187515 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025185 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_148 (21PG53-2) | SAMN39503657 | 17/02/2025 | |||||||||||
| 337 | SRX23311189 | SRP484717 | Illumina NovaSeq 6000 | SRS20187516 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025186 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_149 (21PG53-2) | SAMN39503656 | 17/02/2025 | |||||||||||
| 338 | SRX23311190 | SRP484717 | Illumina NovaSeq 6000 | SRS20187519 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025187 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_15 (21PG77-1) | SAMN39503655 | 17/02/2025 | |||||||||||
| 339 | SRX23310914 | SRP484717 | Illumina NovaSeq 6000 | SRS20187242 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025188 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_150 (21PG53-2) | SAMN39503654 | 17/02/2025 | |||||||||||
| 340 | SRX23310915 | SRP484717 | Illumina NovaSeq 6000 | SRS20187243 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025189 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_151 (21PG53-2) | SAMN39503653 | 17/02/2025 | |||||||||||
| 341 | SRX23310916 | SRP484717 | Illumina NovaSeq 6000 | SRS20187244 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025190 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_152 (21PG53-2) | SAMN39503652 | 17/02/2025 | |||||||||||
| 342 | SRX23310917 | SRP484717 | Illumina NovaSeq 6000 | SRS20187245 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025191 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_153 (21PG53-2) | SAMN39503651 | 17/02/2025 | |||||||||||
| 343 | SRX23310918 | SRP484717 | Illumina NovaSeq 6000 | SRS20187246 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025192 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_154 (21PG53-2) | SAMN39503650 | 17/02/2025 | |||||||||||
| 344 | SRX23310919 | SRP484717 | Illumina NovaSeq 6000 | SRS20187247 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025193 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_155 (21PG53-2) | SAMN39503649 | 17/02/2025 | |||||||||||
| 345 | SRX23310920 | SRP484717 | Illumina NovaSeq 6000 | SRS20187248 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025194 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_156 (21PG53-2) | SAMN39503648 | 17/02/2025 | |||||||||||
| 346 | SRX23310921 | SRP484717 | Illumina NovaSeq 6000 | SRS20187249 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025195 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_157 (21PG53-2) | SAMN39503647 | 17/02/2025 | |||||||||||
| 347 | SRX23311153 | SRP484717 | Illumina NovaSeq 6000 | SRS20187481 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025196 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_158 (21PG53-2) | SAMN39503646 | 17/02/2025 | |||||||||||
| 348 | SRX23311154 | SRP484717 | Illumina NovaSeq 6000 | SRS20187482 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025197 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_159 (21PG53-2) | SAMN39503645 | 17/02/2025 | |||||||||||
| 349 | SRX23311155 | SRP484717 | Illumina NovaSeq 6000 | SRS20187483 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025198 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_16 (21PG77-1) | SAMN39503644 | 17/02/2025 | |||||||||||
| 350 | SRX23311156 | SRP484717 | Illumina NovaSeq 6000 | SRS20187484 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025199 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_160 (21PG53-2) | SAMN39503643 | 17/02/2025 | |||||||||||
| 351 | SRX23311157 | SRP484717 | Illumina NovaSeq 6000 | SRS20187485 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025200 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_161 (21PG53-2) | SAMN39503642 | 17/02/2025 | |||||||||||
| 352 | SRX23311158 | SRP484717 | Illumina NovaSeq 6000 | SRS20187486 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025201 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_162 (21PG53-2) | SAMN39503641 | 17/02/2025 | |||||||||||
| 353 | SRX23311159 | SRP484717 | Illumina NovaSeq 6000 | SRS20187487 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025202 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_163 (21PG53-2) | SAMN39503640 | 17/02/2025 | |||||||||||
| 354 | SRX23311160 | SRP484717 | Illumina NovaSeq 6000 | SRS20187488 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025203 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_164 (21PG53-2) | SAMN39503639 | 17/02/2025 | |||||||||||
| 355 | SRX23311324 | SRP484717 | Illumina NovaSeq 6000 | SRS20187651 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025204 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_165 (21PG53-2) | SAMN39503638 | 17/02/2025 | |||||||||||
| 356 | SRX23311325 | SRP484717 | Illumina NovaSeq 6000 | SRS20187653 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025205 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_166 (21PG53-2) | SAMN39503637 | 17/02/2025 | |||||||||||
| 357 | SRX23311326 | SRP484717 | Illumina NovaSeq 6000 | SRS20187655 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025206 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_167 (21PG53-2) | SAMN39503636 | 17/02/2025 | |||||||||||
| 358 | SRX23311327 | SRP484717 | Illumina NovaSeq 6000 | SRS20187654 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025207 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_168 (21PG32-2) | SAMN39503635 | 17/02/2025 | |||||||||||
| 359 | SRX23311328 | SRP484717 | Illumina NovaSeq 6000 | SRS20187661 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025208 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_169 (21PG32-2) | SAMN39503634 | 17/02/2025 | |||||||||||
| 360 | SRX23311329 | SRP484717 | Illumina NovaSeq 6000 | SRS20187662 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025209 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_17 (21PG77-1) | SAMN39503633 | 17/02/2025 | |||||||||||
| 361 | SRX23311330 | SRP484717 | Illumina NovaSeq 6000 | SRS20187656 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025210 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_170 (21PG32-2) | SAMN39503632 | 17/02/2025 | |||||||||||
| 362 | SRX23311331 | SRP484717 | Illumina NovaSeq 6000 | SRS20187659 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025211 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_171 (21PG32-2) | SAMN39503631 | 17/02/2025 | |||||||||||
| 363 | SRX23311191 | SRP484717 | Illumina NovaSeq 6000 | SRS20187517 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025212 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_172 (21PG32-2) | SAMN39503630 | 17/02/2025 | |||||||||||
| 364 | SRX23311192 | SRP484717 | Illumina NovaSeq 6000 | SRS20187520 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025213 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_173 (21PG32-2) | SAMN39503629 | 17/02/2025 | |||||||||||
| 365 | SRX23311193 | SRP484717 | Illumina NovaSeq 6000 | SRS20187521 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025214 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_174 (21PG32-2) | SAMN39503628 | 17/02/2025 | |||||||||||
| 366 | SRX23311194 | SRP484717 | Illumina NovaSeq 6000 | SRS20187522 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025215 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_175 (21PG32-2) | SAMN39503627 | 17/02/2025 | |||||||||||
| 367 | SRX23311195 | SRP484717 | Illumina NovaSeq 6000 | SRS20187525 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025216 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_176 (21PG32-2) | SAMN39503626 | 17/02/2025 | |||||||||||
| 368 | SRX23311196 | SRP484717 | Illumina NovaSeq 6000 | SRS20187524 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025217 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_177 (21PG32-2) | SAMN39503625 | 17/02/2025 | |||||||||||
| 369 | SRX23311197 | SRP484717 | Illumina NovaSeq 6000 | SRS20187523 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025218 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_178 (21PG32-2) | SAMN39503624 | 17/02/2025 | |||||||||||
| 370 | SRX23311198 | SRP484717 | Illumina NovaSeq 6000 | SRS20187527 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025219 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_179 (21PG32-2) | SAMN39503623 | 17/02/2025 | |||||||||||
| 371 | SRX23310922 | SRP484717 | Illumina NovaSeq 6000 | SRS20187250 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025220 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_18 (21PG77-1) | SAMN39503622 | 17/02/2025 | |||||||||||
| 372 | SRX23310923 | SRP484717 | Illumina NovaSeq 6000 | SRS20187252 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025221 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_180 (21PG32-2) | SAMN39503621 | 17/02/2025 | |||||||||||
| 373 | SRX23310924 | SRP484717 | Illumina NovaSeq 6000 | SRS20187253 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025222 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_19 (21PG77-1) | SAMN39503620 | 17/02/2025 | |||||||||||
| 374 | SRX23310925 | SRP484717 | Illumina NovaSeq 6000 | SRS20187251 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025223 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_191 (21PG49-1) | SAMN39503619 | 17/02/2025 | |||||||||||
| 375 | SRX23310926 | SRP484717 | Illumina NovaSeq 6000 | SRS20187254 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025224 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_192 (21PG49-1) | SAMN39503618 | 17/02/2025 | |||||||||||
| 376 | SRX23310927 | SRP484717 | Illumina NovaSeq 6000 | SRS20187255 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025225 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_193 (21PG57-2) | SAMN39503617 | 17/02/2025 | |||||||||||
| 377 | SRX23310928 | SRP484717 | Illumina NovaSeq 6000 | SRS20187256 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025226 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_194 (21PG57-2) | SAMN39503616 | 17/02/2025 | |||||||||||
| 378 | SRX23310929 | SRP484717 | Illumina NovaSeq 6000 | SRS20187258 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025227 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_195 (21PG57-2) | SAMN39503615 | 17/02/2025 | |||||||||||
| 379 | SRX23311161 | SRP484717 | Illumina NovaSeq 6000 | SRS20187490 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025228 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_196 (21PG57-2) | SAMN39503614 | 17/02/2025 | |||||||||||
| 380 | SRX23311163 | SRP484717 | Illumina NovaSeq 6000 | SRS20187492 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025230 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_198 (21PG57-2) | SAMN39503612 | 17/02/2025 | |||||||||||
| 381 | SRX23311164 | SRP484717 | Illumina NovaSeq 6000 | SRS20187494 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025231 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_199 (21PG57-2) | SAMN39503611 | 17/02/2025 | |||||||||||
| 382 | SRX23311165 | SRP484717 | Illumina NovaSeq 6000 | SRS20187493 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025232 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_2 (21PG50-3) | SAMN39503610 | 17/02/2025 | |||||||||||
| 383 | SRX23311166 | SRP484717 | Illumina NovaSeq 6000 | SRS20187491 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025233 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_20 (21PG77-1) | SAMN39503609 | 17/02/2025 | |||||||||||
| 384 | SRX23311167 | SRP484717 | Illumina NovaSeq 6000 | SRS20187495 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025234 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_200 (21PG57-2) | SAMN39503608 | 17/02/2025 | |||||||||||
| 385 | SRX23311332 | SRP484717 | Illumina NovaSeq 6000 | SRS20187657 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025236 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_202 (21PG57-2) | SAMN39503606 | 17/02/2025 | |||||||||||
| 386 | SRX23311333 | SRP484717 | Illumina NovaSeq 6000 | SRS20187658 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025237 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_203 (21PG57-2) | SAMN39503605 | 17/02/2025 | |||||||||||
| 387 | SRX23311335 | SRP484717 | Illumina NovaSeq 6000 | SRS20187663 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025239 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_205 (21PG57-2) | SAMN39503603 | 17/02/2025 | |||||||||||
| 388 | SRX23311336 | SRP484717 | Illumina NovaSeq 6000 | SRS20187664 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025240 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_206 (21PG57-2) | SAMN39503602 | 17/02/2025 | |||||||||||
| 389 | SRX23311337 | SRP484717 | Illumina NovaSeq 6000 | SRS20187665 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025241 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_207 (21PG57-2) | SAMN39503601 | 17/02/2025 | |||||||||||
| 390 | SRX23311338 | SRP484717 | Illumina NovaSeq 6000 | SRS20187666 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025242 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_208 (21PG57-2) | SAMN39503600 | 17/02/2025 | |||||||||||
| 391 | SRX23311339 | SRP484717 | Illumina NovaSeq 6000 | SRS20187667 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025243 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_209 (21PG75-4) | SAMN39503599 | 17/02/2025 | |||||||||||
| 392 | SRX23311199 | SRP484717 | Illumina NovaSeq 6000 | SRS20187526 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025244 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_21 (21PG77-1) | SAMN39503598 | 17/02/2025 | |||||||||||
| 393 | SRX23311200 | SRP484717 | Illumina NovaSeq 6000 | SRS20187528 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025245 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_210 (21PG75-4) | SAMN39503597 | 17/02/2025 | |||||||||||
| 394 | SRX23311201 | SRP484717 | Illumina NovaSeq 6000 | SRS20187530 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025246 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_211 (21PG75-4) | SAMN39503596 | 17/02/2025 | |||||||||||
| 395 | SRX23311202 | SRP484717 | Illumina NovaSeq 6000 | SRS20187532 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025247 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_212 (21PG75-4) | SAMN39503595 | 17/02/2025 | |||||||||||
| 396 | SRX23311203 | SRP484717 | Illumina NovaSeq 6000 | SRS20187531 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025248 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_213 (21PG75-4) | SAMN39503594 | 17/02/2025 | |||||||||||
| 397 | SRX23311204 | SRP484717 | Illumina NovaSeq 6000 | SRS20187529 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025249 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_214 (21PG75-4) | SAMN39503593 | 17/02/2025 | |||||||||||
| 398 | SRX23311205 | SRP484717 | Illumina NovaSeq 6000 | SRS20187534 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025250 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_215 (21PG75-4) | SAMN39503592 | 17/02/2025 | |||||||||||
| 399 | SRX23311206 | SRP484717 | Illumina NovaSeq 6000 | SRS20187533 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025251 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_216 (21PG75-4) | SAMN39503591 | 17/02/2025 | |||||||||||
| 400 | SRX23311169 | SRP484717 | Illumina NovaSeq 6000 | SRS20187497 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025252 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_217 (21PG75-4) | SAMN39503590 | 17/02/2025 | |||||||||||
| 401 | SRX23311170 | SRP484717 | Illumina NovaSeq 6000 | SRS20187498 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025253 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_218 (21PG75-4) | SAMN39503589 | 17/02/2025 | |||||||||||
| 402 | SRX23311171 | SRP484717 | Illumina NovaSeq 6000 | SRS20187500 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025254 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_219 (21PG75-4) | SAMN39503588 | 17/02/2025 | |||||||||||
| 403 | SRX23311172 | SRP484717 | Illumina NovaSeq 6000 | SRS20187499 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025255 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_22 (21PG77-1) | SAMN39503587 | 17/02/2025 | |||||||||||
| 404 | SRX23311260 | SRP484717 | Illumina NovaSeq 6000 | SRS20187592 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025256 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_220 (21PG75-4) | SAMN39503586 | 17/02/2025 | |||||||||||
| 405 | SRX23311261 | SRP484717 | Illumina NovaSeq 6000 | SRS20187587 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025257 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_221 (21PG75-4) | SAMN39503585 | 17/02/2025 | |||||||||||
| 406 | SRX23311262 | SRP484717 | Illumina NovaSeq 6000 | SRS20187588 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025258 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_222 (21PG75-4) | SAMN39503584 | 17/02/2025 | |||||||||||
| 407 | SRX23311263 | SRP484717 | Illumina NovaSeq 6000 | SRS20187598 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025259 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_223 (21PG75-4) | SAMN39503583 | 17/02/2025 | |||||||||||
| 408 | SRX23311341 | SRP484717 | Illumina NovaSeq 6000 | SRS20187670 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025261 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_225 (21PG75-4) | SAMN39503581 | 17/02/2025 | |||||||||||
| 409 | SRX23311342 | SRP484717 | Illumina NovaSeq 6000 | SRS20187669 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025262 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_226 (21PG75-4) | SAMN39503580 | 17/02/2025 | |||||||||||
| 410 | SRX23311343 | SRP484717 | Illumina NovaSeq 6000 | SRS20187671 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025263 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_227 (21PG75-4) | SAMN39503579 | 17/02/2025 | |||||||||||
| 411 | SRX23311345 | SRP484717 | Illumina NovaSeq 6000 | SRS20187673 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025265 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_23 (21PG77-1) | SAMN39503577 | 17/02/2025 | |||||||||||
| 412 | SRX23311346 | SRP484717 | Illumina NovaSeq 6000 | SRS20187675 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025266 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_24 (21PG77-1) | SAMN39503576 | 17/02/2025 | |||||||||||
| 413 | SRX23311347 | SRP484717 | Illumina NovaSeq 6000 | SRS20187676 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025267 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_25 (21PG40-2) | SAMN39503575 | 17/02/2025 | |||||||||||
| 414 | SRX23311207 | SRP484717 | Illumina NovaSeq 6000 | SRS20187538 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025268 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_26 (21PG40-2) | SAMN39503574 | 17/02/2025 | |||||||||||
| 415 | SRX23311211 | SRP484717 | Illumina NovaSeq 6000 | SRS20187536 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025272 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_269 (21PG76-2) | SAMN39503570 | 17/02/2025 | |||||||||||
| 416 | SRX23311212 | SRP484717 | Illumina NovaSeq 6000 | SRS20187540 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025273 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_27 (21PG40-2) | SAMN39503569 | 17/02/2025 | |||||||||||
| 417 | SRX23311213 | SRP484717 | Illumina NovaSeq 6000 | SRS20187541 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025274 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_270 (21PG76-2) | SAMN39503568 | 17/02/2025 | |||||||||||
| 418 | SRX23311214 | SRP484717 | Illumina NovaSeq 6000 | SRS20187544 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025275 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_271 (21PG76-2) | SAMN39503567 | 17/02/2025 | |||||||||||
| 419 | SRX23310935 | SRP484717 | Illumina NovaSeq 6000 | SRS20187263 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025281 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_277 (21PG76-2) | SAMN39503561 | 17/02/2025 | |||||||||||
| 420 | SRX23311264 | SRP484717 | Illumina NovaSeq 6000 | SRS20187589 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025284 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_28 (21PG40-2) | SAMN39503558 | 17/02/2025 | |||||||||||
| 421 | SRX23311266 | SRP484717 | Illumina NovaSeq 6000 | SRS20187594 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025286 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_281 (21PG45-2) | SAMN39503556 | 17/02/2025 | |||||||||||
| 422 | SRX23311348 | SRP484717 | Illumina NovaSeq 6000 | SRS20187674 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025292 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_287 (21PG45-2) | SAMN39503550 | 17/02/2025 | |||||||||||
| 423 | SRX23311350 | SRP484717 | Illumina NovaSeq 6000 | SRS20187677 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025294 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_289 (21PG35-1) | SAMN39503548 | 17/02/2025 | |||||||||||
| 424 | SRX23311351 | SRP484717 | Illumina NovaSeq 6000 | SRS20187678 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025295 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_29 (21PG40-2) | SAMN39503547 | 17/02/2025 | |||||||||||
| 425 | SRX23311352 | SRP484717 | Illumina NovaSeq 6000 | SRS20187680 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025296 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_290 (21PG35-1) | SAMN39503546 | 17/02/2025 | |||||||||||
| 426 | SRX23311353 | SRP484717 | Illumina NovaSeq 6000 | SRS20187681 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025297 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_291 (21PG35-1) | SAMN39503545 | 17/02/2025 | |||||||||||
| 427 | SRX23311216 | SRP484717 | Illumina NovaSeq 6000 | SRS20187542 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025301 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_295 (21PG35-1) | SAMN39503541 | 17/02/2025 | |||||||||||
| 428 | SRX23311217 | SRP484717 | Illumina NovaSeq 6000 | SRS20187543 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025302 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_296 (21PG65-1) | SAMN39503540 | 17/02/2025 | |||||||||||
| 429 | SRX23311218 | SRP484717 | Illumina NovaSeq 6000 | SRS20187546 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025303 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_297 (21PG65-1) | SAMN39503539 | 17/02/2025 | |||||||||||
| 430 | SRX23311219 | SRP484717 | Illumina NovaSeq 6000 | SRS20187547 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025304 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_298 (21PG65-1) | SAMN39503538 | 17/02/2025 | |||||||||||
| 431 | SRX23311220 | SRP484717 | Illumina NovaSeq 6000 | SRS20187548 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025305 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_299 (21PG65-1) | SAMN39503537 | 17/02/2025 | |||||||||||
| 432 | SRX23311221 | SRP484717 | Illumina NovaSeq 6000 | SRS20187549 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025306 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_3 (21PG50-3) | SAMN39503536 | 17/02/2025 | |||||||||||
| 433 | SRX23311222 | SRP484717 | Illumina NovaSeq 6000 | SRS20187551 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025307 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_30 (21PG40-2) | SAMN39503535 | 17/02/2025 | |||||||||||
| 434 | SRX23310938 | SRP484717 | Illumina NovaSeq 6000 | SRS20187265 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025308 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_300 (21PG65-1) | SAMN39503534 | 17/02/2025 | |||||||||||
| 435 | SRX23310939 | SRP484717 | Illumina NovaSeq 6000 | SRS20187267 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025309 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_301 (21PG65-1) | SAMN39503533 | 17/02/2025 | |||||||||||
| 436 | SRX23310940 | SRP484717 | Illumina NovaSeq 6000 | SRS20187269 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025310 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_302 (21PG65-1) | SAMN39503532 | 17/02/2025 | |||||||||||
| 437 | SRX23310941 | SRP484717 | Illumina NovaSeq 6000 | SRS20187268 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025311 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_303 (21PG65-1) | SAMN39503531 | 17/02/2025 | |||||||||||
| 438 | SRX23310942 | SRP484717 | Illumina NovaSeq 6000 | SRS20187270 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025312 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_304 (21PG65-1) | SAMN39503530 | 17/02/2025 | |||||||||||
| 439 | SRX23310943 | SRP484717 | Illumina NovaSeq 6000 | SRS20187271 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025313 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_305 (21PG65-1) | SAMN39503529 | 17/02/2025 | |||||||||||
| 440 | SRX23310944 | SRP484717 | Illumina NovaSeq 6000 | SRS20187272 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025314 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_306 (21PG65-1) | SAMN39503528 | 17/02/2025 | |||||||||||
| 441 | SRX23310945 | SRP484717 | Illumina NovaSeq 6000 | SRS20187273 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025315 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_307 (21PG65-1) | SAMN39503527 | 17/02/2025 | |||||||||||
| 442 | SRX23311272 | SRP484717 | Illumina NovaSeq 6000 | SRS20187602 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025316 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_308 (21PG65-1) | SAMN39503526 | 17/02/2025 | |||||||||||
| 443 | SRX23311273 | SRP484717 | Illumina NovaSeq 6000 | SRS20187601 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025317 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_309 (21PG65-1) | SAMN39503525 | 17/02/2025 | |||||||||||
| 444 | SRX23311274 | SRP484717 | Illumina NovaSeq 6000 | SRS20187600 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025318 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_31 (21PG40-2) | SAMN39503524 | 17/02/2025 | |||||||||||
| 445 | SRX23311275 | SRP484717 | Illumina NovaSeq 6000 | SRS20187603 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025319 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_310 (21PG65-1) | SAMN39503523 | 17/02/2025 | |||||||||||
| 446 | SRX23311276 | SRP484717 | Illumina NovaSeq 6000 | SRS20187604 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025320 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_311 (21PG65-1) | SAMN39503522 | 17/02/2025 | |||||||||||
| 447 | SRX23311277 | SRP484717 | Illumina NovaSeq 6000 | SRS20187605 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025321 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_312 (21PG65-1) | SAMN39503521 | 17/02/2025 | |||||||||||
| 448 | SRX23311278 | SRP484717 | Illumina NovaSeq 6000 | SRS20187606 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025322 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_313 (21PG65-1) | SAMN39503520 | 17/02/2025 | |||||||||||
| 449 | SRX23311279 | SRP484717 | Illumina NovaSeq 6000 | SRS20187607 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025323 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_314 (21PG65-2) | SAMN39503519 | 17/02/2025 | |||||||||||
| 450 | SRX23311356 | SRP484717 | Illumina NovaSeq 6000 | SRS20187682 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025324 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_315 (21PG65-2) | SAMN39503518 | 17/02/2025 | |||||||||||
| 451 | SRX23311357 | SRP484717 | Illumina NovaSeq 6000 | SRS20187686 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025325 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_316 (21PG65-2) | SAMN39503517 | 17/02/2025 | |||||||||||
| 452 | SRX23311358 | SRP484717 | Illumina NovaSeq 6000 | SRS20187685 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025326 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_317 (21PG65-2) | SAMN39503516 | 17/02/2025 | |||||||||||
| 453 | SRX23311359 | SRP484717 | Illumina NovaSeq 6000 | SRS20187687 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025327 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_318 (21PG65-2) | SAMN39503515 | 17/02/2025 | |||||||||||
| 454 | SRX23311360 | SRP484717 | Illumina NovaSeq 6000 | SRS20187688 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025328 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_319 (21PG65-2) | SAMN39503514 | 17/02/2025 | |||||||||||
| 455 | SRX23311361 | SRP484717 | Illumina NovaSeq 6000 | SRS20187690 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025329 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_32 (21PG40-2) | SAMN39503513 | 17/02/2025 | |||||||||||
| 456 | SRX23311362 | SRP484717 | Illumina NovaSeq 6000 | SRS20187689 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025330 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_320 (21PG65-2) | SAMN39503512 | 17/02/2025 | |||||||||||
| 457 | SRX23311363 | SRP484717 | Illumina NovaSeq 6000 | SRS20187691 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025331 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_321 (21PG65-2) | SAMN39503511 | 17/02/2025 | |||||||||||
| 458 | SRX23311223 | SRP484717 | Illumina NovaSeq 6000 | SRS20187550 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025332 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_322 (21PG65-2) | SAMN39503510 | 17/02/2025 | |||||||||||
| 459 | SRX23311224 | SRP484717 | Illumina NovaSeq 6000 | SRS20187553 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025333 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_323 (20PG3-1) | SAMN39503509 | 17/02/2025 | |||||||||||
| 460 | SRX23310946 | SRP484717 | Illumina NovaSeq 6000 | SRS20187274 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025340 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_33 (21PG40-2) | SAMN39503502 | 17/02/2025 | |||||||||||
| 461 | SRX23310947 | SRP484717 | Illumina NovaSeq 6000 | SRS20187275 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025341 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_330 (20PG3-1) | SAMN39503501 | 17/02/2025 | |||||||||||
| 462 | SRX23310948 | SRP484717 | Illumina NovaSeq 6000 | SRS20187276 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025342 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_331 (20PG3-1) | SAMN39503500 | 17/02/2025 | |||||||||||
| 463 | SRX23310953 | SRP484717 | Illumina NovaSeq 6000 | SRS20187281 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025347 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_336 (20PG3-1) | SAMN39503495 | 17/02/2025 | |||||||||||
| 464 | SRX23311282 | SRP484717 | Illumina NovaSeq 6000 | SRS20187609 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025350 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_339 (20PG3-1) | SAMN39503492 | 17/02/2025 | |||||||||||
| 465 | SRX23311283 | SRP484717 | Illumina NovaSeq 6000 | SRS20187611 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025351 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_34 (21PG40-2) | SAMN39503491 | 17/02/2025 | |||||||||||
| 466 | SRX23311284 | SRP484717 | Illumina NovaSeq 6000 | SRS20187612 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025352 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_340 (20PG3-1) | SAMN39503490 | 17/02/2025 | |||||||||||
| 467 | SRX23311286 | SRP484717 | Illumina NovaSeq 6000 | SRS20187614 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025354 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_342 (20PG3-1) | SAMN39503488 | 17/02/2025 | |||||||||||
| 468 | SRX23311366 | SRP484717 | Illumina NovaSeq 6000 | SRS20187693 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025358 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_346 (20PG4-3) | SAMN39503484 | 17/02/2025 | |||||||||||
| 469 | SRX23311367 | SRP484717 | Illumina NovaSeq 6000 | SRS20187695 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025359 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_347 (20PG4-3) | SAMN39503483 | 17/02/2025 | |||||||||||
| 470 | SRX23311368 | SRP484717 | Illumina NovaSeq 6000 | SRS20187697 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025360 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_348 (20PG4-3) | SAMN39503482 | 17/02/2025 | |||||||||||
| 471 | SRX23311369 | SRP484717 | Illumina NovaSeq 6000 | SRS20187696 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025361 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_349 (20PG4-3) | SAMN39503481 | 17/02/2025 | |||||||||||
| 472 | SRX23311370 | SRP484717 | Illumina NovaSeq 6000 | SRS20187700 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025362 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_35 (21PG40-2) | SAMN39503480 | 17/02/2025 | |||||||||||
| 473 | SRX23311371 | SRP484717 | Illumina NovaSeq 6000 | SRS20187702 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025363 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_350 (20PG4-3) | SAMN39503479 | 17/02/2025 | |||||||||||
| 474 | SRX23311231 | SRP484717 | Illumina NovaSeq 6000 | SRS20187560 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025364 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_351 (20PG4-3) | SAMN39503478 | 17/02/2025 | |||||||||||
| 475 | SRX23311232 | SRP484717 | Illumina NovaSeq 6000 | SRS20187566 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025365 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_352 (20PG4-3) | SAMN39503477 | 17/02/2025 | |||||||||||
| 476 | SRX23311233 | SRP484717 | Illumina NovaSeq 6000 | SRS20187559 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025366 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_353 (20PG4-3) | SAMN39503476 | 17/02/2025 | |||||||||||
| 477 | SRX23311234 | SRP484717 | Illumina NovaSeq 6000 | SRS20187561 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025367 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_354 (20PG4-3) | SAMN39503475 | 17/02/2025 | |||||||||||
| 478 | SRX23311235 | SRP484717 | Illumina NovaSeq 6000 | SRS20187562 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025368 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_355 (20PG4-3) | SAMN39503474 | 17/02/2025 | |||||||||||
| 479 | SRX23311236 | SRP484717 | Illumina NovaSeq 6000 | SRS20187567 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025369 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_356 (20PG4-3) | SAMN39503473 | 17/02/2025 | |||||||||||
| 480 | SRX23311237 | SRP484717 | Illumina NovaSeq 6000 | SRS20187563 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025370 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_357 (20PG4-3) | SAMN39503472 | 17/02/2025 | |||||||||||
| 481 | SRX23311238 | SRP484717 | Illumina NovaSeq 6000 | SRS20187564 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025371 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_358 (20PG4-3) | SAMN39503471 | 17/02/2025 | |||||||||||
| 482 | SRX23310954 | SRP484717 | Illumina NovaSeq 6000 | SRS20187282 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025372 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_359 (21PG33-2) | SAMN39503470 | 17/02/2025 | |||||||||||
| 483 | SRX23310955 | SRP484717 | Illumina NovaSeq 6000 | SRS20187285 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025373 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_36 (21PG40-2) | SAMN39503469 | 17/02/2025 | |||||||||||
| 484 | SRX23310956 | SRP484717 | Illumina NovaSeq 6000 | SRS20187283 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025374 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_360 (21PG33-2) | SAMN39503468 | 17/02/2025 | |||||||||||
| 485 | SRX23310957 | SRP484717 | Illumina NovaSeq 6000 | SRS20187284 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025375 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_361 (21PG33-2) | SAMN39503467 | 17/02/2025 | |||||||||||
| 486 | SRX23310958 | SRP484717 | Illumina NovaSeq 6000 | SRS20187286 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025376 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_362 (21PG33-2) | SAMN39503466 | 17/02/2025 | |||||||||||
| 487 | SRX23310959 | SRP484717 | Illumina NovaSeq 6000 | SRS20187288 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025377 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_363 (21PG33-2) | SAMN39503465 | 17/02/2025 | |||||||||||
| 488 | SRX23310960 | SRP484717 | Illumina NovaSeq 6000 | SRS20187287 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025378 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_364 (21PG33-2) | SAMN39503464 | 17/02/2025 | |||||||||||
| 489 | SRX23310961 | SRP484717 | Illumina NovaSeq 6000 | SRS20187289 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025379 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_365 (21PG33-2) | SAMN39503463 | 17/02/2025 | |||||||||||
| 490 | SRX23311288 | SRP484717 | Illumina NovaSeq 6000 | SRS20187615 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025380 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_366 (21PG33-2) | SAMN39503462 | 17/02/2025 | |||||||||||
| 491 | SRX23311291 | SRP484717 | Illumina NovaSeq 6000 | SRS20187619 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025383 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_369 (21PG33-2) | SAMN39503459 | 17/02/2025 | |||||||||||
| 492 | SRX23311292 | SRP484717 | Illumina NovaSeq 6000 | SRS20187620 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025384 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_37 (21PG40-2) | SAMN39503458 | 17/02/2025 | |||||||||||
| 493 | SRX23311293 | SRP484717 | Illumina NovaSeq 6000 | SRS20187621 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025385 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_370 (21PG33-2) | SAMN39503457 | 17/02/2025 | |||||||||||
| 494 | SRX23311294 | SRP484717 | Illumina NovaSeq 6000 | SRS20187626 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025386 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_371 (21PG33-2) | SAMN39503456 | 17/02/2025 | |||||||||||
| 495 | SRX23311295 | SRP484717 | Illumina NovaSeq 6000 | SRS20187623 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025387 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_372 (21PG33-2) | SAMN39503455 | 17/02/2025 | |||||||||||
| 496 | SRX23311373 | SRP484717 | Illumina NovaSeq 6000 | SRS20187699 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025389 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_39 (21PG40-2) | SAMN39503453 | 17/02/2025 | |||||||||||
| 497 | SRX23311374 | SRP484717 | Illumina NovaSeq 6000 | SRS20187701 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025390 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_4 (21PG50-3) | SAMN39503452 | 17/02/2025 | |||||||||||
| 498 | SRX23311376 | SRP484717 | Illumina NovaSeq 6000 | SRS20187704 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025392 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_41 (21PG33-1) | SAMN39503450 | 17/02/2025 | |||||||||||
| 499 | SRX23311377 | SRP484717 | Illumina NovaSeq 6000 | SRS20187705 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025393 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_42 (21PG33-1) | SAMN39503449 | 17/02/2025 | |||||||||||
| 500 | SRX23311378 | SRP484717 | Illumina NovaSeq 6000 | SRS20187706 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025394 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_43 (21PG33-1) | SAMN39503448 | 17/02/2025 | |||||||||||
| 501 | SRX23311379 | SRP484717 | Illumina NovaSeq 6000 | SRS20187709 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025395 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_44 (21PG33-1) | SAMN39503447 | 17/02/2025 | |||||||||||
| 502 | SRX23311239 | SRP484717 | Illumina NovaSeq 6000 | SRS20187573 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025396 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_45 (21PG33-1) | SAMN39503446 | 17/02/2025 | |||||||||||
| 503 | SRX23311241 | SRP484717 | Illumina NovaSeq 6000 | SRS20187568 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025398 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_47 (21PG33-1) | SAMN39503444 | 17/02/2025 | |||||||||||
| 504 | SRX23311242 | SRP484717 | Illumina NovaSeq 6000 | SRS20187569 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025399 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_48 (21PG33-1) | SAMN39503443 | 17/02/2025 | |||||||||||
| 505 | SRX23311243 | SRP484717 | Illumina NovaSeq 6000 | SRS20187571 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025400 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_49 (21PG33-1) | SAMN39503442 | 17/02/2025 | |||||||||||
| 506 | SRX23311244 | SRP484717 | Illumina NovaSeq 6000 | SRS20187570 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025401 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_5 (21PG50-3) | SAMN39503441 | 17/02/2025 | |||||||||||
| 507 | SRX23311245 | SRP484717 | Illumina NovaSeq 6000 | SRS20187572 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025402 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_50 (21PG33-1) | SAMN39503440 | 17/02/2025 | |||||||||||
| 508 | SRX23311246 | SRP484717 | Illumina NovaSeq 6000 | SRS20187574 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025403 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_51 (21PG33-1) | SAMN39503439 | 17/02/2025 | |||||||||||
| 509 | SRX23310962 | SRP484717 | Illumina NovaSeq 6000 | SRS20187291 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025404 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_52 (21PG33-1) | SAMN39503438 | 17/02/2025 | |||||||||||
| 510 | SRX23310963 | SRP484717 | Illumina NovaSeq 6000 | SRS20187290 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025405 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_53 (21PG33-1) | SAMN39503437 | 17/02/2025 | |||||||||||
| 511 | SRX23310964 | SRP484717 | Illumina NovaSeq 6000 | SRS20187293 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025406 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_54 (21PG33-1) | SAMN39503436 | 17/02/2025 | |||||||||||
| 512 | SRX23310965 | SRP484717 | Illumina NovaSeq 6000 | SRS20187292 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025407 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_55 (21PG33-1) | SAMN39503435 | 17/02/2025 | |||||||||||
| 513 | SRX23310966 | SRP484717 | Illumina NovaSeq 6000 | SRS20187294 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025408 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_56 (21PG33-1) | SAMN39503434 | 17/02/2025 | |||||||||||
| 514 | SRX23310967 | SRP484717 | Illumina NovaSeq 6000 | SRS20187295 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025409 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_57 (21PG33-1) | SAMN39503433 | 17/02/2025 | |||||||||||
| 515 | SRX23310968 | SRP484717 | Illumina NovaSeq 6000 | SRS20187296 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025410 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_58 (21PG33-1) | SAMN39503432 | 17/02/2025 | |||||||||||
| 516 | SRX23311296 | SRP484717 | Illumina NovaSeq 6000 | SRS20187622 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025412 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_6 (21PG50-3) | SAMN39503430 | 17/02/2025 | |||||||||||
| 517 | SRX23311297 | SRP484717 | Illumina NovaSeq 6000 | SRS20187624 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025413 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_60 (21PG33-1) | SAMN39503429 | 17/02/2025 | |||||||||||
| 518 | SRX23311298 | SRP484717 | Illumina NovaSeq 6000 | SRS20187627 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025414 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_61 (21PG33-1) | SAMN39503428 | 17/02/2025 | |||||||||||
| 519 | SRX23311299 | SRP484717 | Illumina NovaSeq 6000 | SRS20187625 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025415 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_62 (21PG33-1) | SAMN39503427 | 17/02/2025 | |||||||||||
| 520 | SRX23311383 | SRP484717 | Illumina NovaSeq 6000 | SRS20187711 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025423 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_7 (21PG50-3) | SAMN39503419 | 17/02/2025 | |||||||||||
| 521 | SRX23311253 | SRP484717 | Illumina NovaSeq 6000 | SRS20187581 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025434 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_8 (21PG77-1) | SAMN39503408 | 17/02/2025 | |||||||||||
| 522 | SRX23311254 | SRP484717 | Illumina NovaSeq 6000 | SRS20187582 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025435 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_80 (21PG42-2) | SAMN39503407 | 17/02/2025 | |||||||||||
| 523 | SRX23310971 | SRP484717 | Illumina NovaSeq 6000 | SRS20187299 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025437 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_82 (21PG55-1) | SAMN39503405 | 17/02/2025 | |||||||||||
| 524 | SRX23310972 | SRP484717 | Illumina NovaSeq 6000 | SRS20187300 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025438 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_83 (21PG55-1) | SAMN39503404 | 17/02/2025 | |||||||||||
| 525 | SRX23310973 | SRP484717 | Illumina NovaSeq 6000 | SRS20187301 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025439 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_84 (21PG55-1) | SAMN39503403 | 17/02/2025 | |||||||||||
| 526 | SRX23310974 | SRP484717 | Illumina NovaSeq 6000 | SRS20187302 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025440 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_85 (21PG55-1) | SAMN39503402 | 17/02/2025 | |||||||||||
| 527 | SRX23310975 | SRP484717 | Illumina NovaSeq 6000 | SRS20187305 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025441 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_86 (21PG55-1) | SAMN39503401 | 17/02/2025 | |||||||||||
| 528 | SRX23310976 | SRP484717 | Illumina NovaSeq 6000 | SRS20187304 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025442 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_87 (21PG55-1) | SAMN39503400 | 17/02/2025 | |||||||||||
| 529 | SRX23310977 | SRP484717 | Illumina NovaSeq 6000 | SRS20187303 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025443 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_88 (21PG55-1) | SAMN39503399 | 17/02/2025 | |||||||||||
| 530 | SRX23311304 | SRP484717 | Illumina NovaSeq 6000 | SRS20187631 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025444 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_89 (21PG55-1) | SAMN39503398 | 17/02/2025 | |||||||||||
| 531 | SRX23311305 | SRP484717 | Illumina NovaSeq 6000 | SRS20187634 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025445 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_9 (21PG77-1) | SAMN39503397 | 17/02/2025 | |||||||||||
| 532 | SRX23311306 | SRP484717 | Illumina NovaSeq 6000 | SRS20187632 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025446 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_90 (21PG55-1) | SAMN39503396 | 17/02/2025 | |||||||||||
| 533 | SRX23311307 | SRP484717 | Illumina NovaSeq 6000 | SRS20187637 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025447 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_91 (21PG55-1) | SAMN39503395 | 17/02/2025 | |||||||||||
| 534 | SRX23311309 | SRP484717 | Illumina NovaSeq 6000 | SRS20187636 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025449 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_93 (21PG55-1) | SAMN39503393 | 17/02/2025 | |||||||||||
| 535 | SRX23311310 | SRP484717 | Illumina NovaSeq 6000 | SRS20187638 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025450 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_94 (21PG55-1) | SAMN39503392 | 17/02/2025 | |||||||||||
| 536 | SRX23311311 | SRP484717 | Illumina NovaSeq 6000 | SRS20187639 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025451 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_95 (21PG55-1) | SAMN39503391 | 17/02/2025 | |||||||||||
| 537 | SRX23311388 | SRP484717 | Illumina NovaSeq 6000 | SRS20187716 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025452 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_96 (21PG55-1) | SAMN39503390 | 17/02/2025 | |||||||||||
| 538 | SRX23311389 | SRP484717 | Illumina NovaSeq 6000 | SRS20187718 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025453 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_97 (21PG55-3) | SAMN39503389 | 17/02/2025 | |||||||||||
| 539 | SRX23311390 | SRP484717 | Illumina NovaSeq 6000 | SRS20187720 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025454 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_98 (21PG55-3) | SAMN39503388 | 17/02/2025 | |||||||||||
| 540 | SRX23311391 | SRP484717 | Illumina NovaSeq 6000 | SRS20187717 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025455 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | Smart-Seq2 | Full-length | JC_2_99 (21PG55-3) | SAMN39503387 | 17/02/2025 |
protocol & RNAseqTags¶
In [ ]:
# making these variables because we use them again in the experiment file
# usually 10X Genomics V1/V2/V3/V3.1, Smart-seq, Smart-seq2
#my_protocol = ''
# Full-length or 3'end or 5'end
#my_protocolType = ""
#library.loc[:,'protocol'] = my_protocol
#library.loc[:,'protocolType'] = my_protocolType
# scRNA-seq, Sn-scRNA-seq
library.loc[:,'RNAseqTags'] = 'scRNA-seq'
# view
display_df(library)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRX23310999 | SRP484717 | Illumina NovaSeq 6000 | SRS20187327 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024795 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_1 (21PG50-2) | SAMN39504047 | 17/02/2025 | ||||||||||
| 1 | SRX23311255 | SRP484717 | Illumina NovaSeq 6000 | SRS20187583 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024796 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_10 (21PG39-1) | SAMN39504046 | 17/02/2025 | ||||||||||
| 2 | SRX23311256 | SRP484717 | Illumina NovaSeq 6000 | SRS20187584 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024797 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_100 (21PG55-2) | SAMN39504045 | 17/02/2025 | ||||||||||
| 3 | SRX23311257 | SRP484717 | Illumina NovaSeq 6000 | SRS20187585 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024798 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_101 (21PG55-2) | SAMN39504044 | 17/02/2025 | ||||||||||
| 4 | SRX23311258 | SRP484717 | Illumina NovaSeq 6000 | SRS20187586 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024799 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_102 (21PG55-2) | SAMN39504043 | 17/02/2025 | ||||||||||
| 5 | SRX23311259 | SRP484717 | Illumina NovaSeq 6000 | SRS20187590 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024800 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_103 (21PG55-2) | SAMN39504042 | 17/02/2025 | ||||||||||
| 6 | SRX23310825 | SRP484717 | Illumina NovaSeq 6000 | SRS20187153 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024801 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_104 (21PG55-2) | SAMN39504041 | 17/02/2025 | ||||||||||
| 7 | SRX23310826 | SRP484717 | Illumina NovaSeq 6000 | SRS20187154 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024802 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_105 (21PG55-2) | SAMN39504040 | 17/02/2025 | ||||||||||
| 8 | SRX23310827 | SRP484717 | Illumina NovaSeq 6000 | SRS20187157 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024803 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_106 (21PG55-2) | SAMN39504039 | 17/02/2025 | ||||||||||
| 9 | SRX23311000 | SRP484717 | Illumina NovaSeq 6000 | SRS20187330 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024804 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_107 (21PG55-2) | SAMN39504038 | 17/02/2025 | ||||||||||
| 10 | SRX23311001 | SRP484717 | Illumina NovaSeq 6000 | SRS20187329 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024805 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_108 (21PG55-2) | SAMN39504037 | 17/02/2025 | ||||||||||
| 11 | SRX23311002 | SRP484717 | Illumina NovaSeq 6000 | SRS20187328 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024806 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_109 (21PG34-1) | SAMN39504036 | 17/02/2025 | ||||||||||
| 12 | SRX23311003 | SRP484717 | Illumina NovaSeq 6000 | SRS20187331 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024807 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_11 (21PG39-1) | SAMN39504035 | 17/02/2025 | ||||||||||
| 13 | SRX23311004 | SRP484717 | Illumina NovaSeq 6000 | SRS20187333 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024808 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_110 (21PG34-1) | SAMN39504034 | 17/02/2025 | ||||||||||
| 14 | SRX23311006 | SRP484717 | Illumina NovaSeq 6000 | SRS20187334 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024810 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_112 (21PG34-1) | SAMN39504032 | 17/02/2025 | ||||||||||
| 15 | SRX23311007 | SRP484717 | Illumina NovaSeq 6000 | SRS20187335 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024811 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_113 (21PG37-2) | SAMN39504031 | 17/02/2025 | ||||||||||
| 16 | SRX23311392 | SRP484717 | Illumina NovaSeq 6000 | SRS20187719 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024812 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_114 (21PG37-2) | SAMN39504030 | 17/02/2025 | ||||||||||
| 17 | SRX23311393 | SRP484717 | Illumina NovaSeq 6000 | SRS20187721 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024813 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_115 (21PG37-2) | SAMN39504029 | 17/02/2025 | ||||||||||
| 18 | SRX23311394 | SRP484717 | Illumina NovaSeq 6000 | SRS20187722 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024814 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_116 (21PG37-2) | SAMN39504028 | 17/02/2025 | ||||||||||
| 19 | SRX23311395 | SRP484717 | Illumina NovaSeq 6000 | SRS20187724 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024815 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_117 (21PG37-2) | SAMN39504027 | 17/02/2025 | ||||||||||
| 20 | SRX23311397 | SRP484717 | Illumina NovaSeq 6000 | SRS20187725 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024817 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_119 (21PG37-2) | SAMN39504025 | 17/02/2025 | ||||||||||
| 21 | SRX23311398 | SRP484717 | Illumina NovaSeq 6000 | SRS20187726 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024818 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_12 (21PG39-1) | SAMN39504024 | 17/02/2025 | ||||||||||
| 22 | SRX23311399 | SRP484717 | Illumina NovaSeq 6000 | SRS20187727 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024819 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_120 (21PG37-2) | SAMN39504023 | 17/02/2025 | ||||||||||
| 23 | SRX23310828 | SRP484717 | Illumina NovaSeq 6000 | SRS20187156 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024820 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_121 (21PG37-2) | SAMN39504022 | 17/02/2025 | ||||||||||
| 24 | SRX23310829 | SRP484717 | Illumina NovaSeq 6000 | SRS20187158 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024821 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_122 (21PG37-2) | SAMN39504021 | 17/02/2025 | ||||||||||
| 25 | SRX23310831 | SRP484717 | Illumina NovaSeq 6000 | SRS20187159 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024823 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_124 (21PG37-3) | SAMN39504019 | 17/02/2025 | ||||||||||
| 26 | SRX23310832 | SRP484717 | Illumina NovaSeq 6000 | SRS20187160 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024824 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_125 (21PG37-3) | SAMN39504018 | 17/02/2025 | ||||||||||
| 27 | SRX23310833 | SRP484717 | Illumina NovaSeq 6000 | SRS20187161 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024825 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_126 (21PG37-3) | SAMN39504017 | 17/02/2025 | ||||||||||
| 28 | SRX23310834 | SRP484717 | Illumina NovaSeq 6000 | SRS20187163 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024826 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_127 (21PG37-3) | SAMN39504016 | 17/02/2025 | ||||||||||
| 29 | SRX23310835 | SRP484717 | Illumina NovaSeq 6000 | SRS20187162 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024827 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_128 (21PG37-3) | SAMN39504015 | 17/02/2025 | ||||||||||
| 30 | SRX23311008 | SRP484717 | Illumina NovaSeq 6000 | SRS20187336 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024828 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_129 (21PG37-3) | SAMN39504014 | 17/02/2025 | ||||||||||
| 31 | SRX23311009 | SRP484717 | Illumina NovaSeq 6000 | SRS20187337 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024829 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_13 (21PG39-1) | SAMN39504013 | 17/02/2025 | ||||||||||
| 32 | SRX23311010 | SRP484717 | Illumina NovaSeq 6000 | SRS20187338 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024830 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_130 (21PG37-3) | SAMN39504012 | 17/02/2025 | ||||||||||
| 33 | SRX23311011 | SRP484717 | Illumina NovaSeq 6000 | SRS20187339 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024831 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_131 (21PG37-3) | SAMN39504011 | 17/02/2025 | ||||||||||
| 34 | SRX23311012 | SRP484717 | Illumina NovaSeq 6000 | SRS20187340 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024832 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_132 (21PG37-3) | SAMN39504010 | 17/02/2025 | ||||||||||
| 35 | SRX23311013 | SRP484717 | Illumina NovaSeq 6000 | SRS20187341 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024833 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_133 (21PG37-3) | SAMN39504009 | 17/02/2025 | ||||||||||
| 36 | SRX23311014 | SRP484717 | Illumina NovaSeq 6000 | SRS20187342 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024834 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_134 (21PG37-3) | SAMN39504008 | 17/02/2025 | ||||||||||
| 37 | SRX23311015 | SRP484717 | Illumina NovaSeq 6000 | SRS20187343 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024835 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_135 (21PG37-3) | SAMN39504007 | 17/02/2025 | ||||||||||
| 38 | SRX23311400 | SRP484717 | Illumina NovaSeq 6000 | SRS20187728 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024836 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_136 (21PG37-3) | SAMN39504006 | 17/02/2025 | ||||||||||
| 39 | SRX23311402 | SRP484717 | Illumina NovaSeq 6000 | SRS20187730 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024838 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_138 (21PG37-3) | SAMN39504004 | 17/02/2025 | ||||||||||
| 40 | SRX23311404 | SRP484717 | Illumina NovaSeq 6000 | SRS20187731 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024840 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_14 (21PG39-1) | SAMN39504002 | 17/02/2025 | ||||||||||
| 41 | SRX23311405 | SRP484717 | Illumina NovaSeq 6000 | SRS20187733 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024841 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_140 (21PG37-3) | SAMN39504001 | 17/02/2025 | ||||||||||
| 42 | SRX23311406 | SRP484717 | Illumina NovaSeq 6000 | SRS20187732 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024842 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_141 (21PG37-3) | SAMN39504000 | 17/02/2025 | ||||||||||
| 43 | SRX23310985 | SRP484717 | Illumina NovaSeq 6000 | SRS20187311 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024851 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_15 (21PG39-1) | SAMN39503991 | 17/02/2025 | ||||||||||
| 44 | SRX23310837 | SRP484717 | Illumina NovaSeq 6000 | SRS20187165 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024853 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_151 (21PG55-2) | SAMN39503989 | 17/02/2025 | ||||||||||
| 45 | SRX23310840 | SRP484717 | Illumina NovaSeq 6000 | SRS20187168 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024856 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_154 (21PG53-1) | SAMN39503986 | 17/02/2025 | ||||||||||
| 46 | SRX23310842 | SRP484717 | Illumina NovaSeq 6000 | SRS20187170 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024858 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_156 (21PG55-2) | SAMN39503984 | 17/02/2025 | ||||||||||
| 47 | SRX23310843 | SRP484717 | Illumina NovaSeq 6000 | SRS20187171 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024859 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_157 (21PG53-1) | SAMN39503983 | 17/02/2025 | ||||||||||
| 48 | SRX23311016 | SRP484717 | Illumina NovaSeq 6000 | SRS20187344 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024860 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_158 (21PG53-1) | SAMN39503982 | 17/02/2025 | ||||||||||
| 49 | SRX23311017 | SRP484717 | Illumina NovaSeq 6000 | SRS20187345 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024861 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_159 (21PG53-1) | SAMN39503981 | 17/02/2025 | ||||||||||
| 50 | SRX23311018 | SRP484717 | Illumina NovaSeq 6000 | SRS20187346 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024862 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_16 (21PG39-1) | SAMN39503980 | 17/02/2025 | ||||||||||
| 51 | SRX23311019 | SRP484717 | Illumina NovaSeq 6000 | SRS20187347 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024863 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_160 (21PG53-1) | SAMN39503979 | 17/02/2025 | ||||||||||
| 52 | SRX23311020 | SRP484717 | Illumina NovaSeq 6000 | SRS20187348 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024864 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_161 (21PG53-1) | SAMN39503978 | 17/02/2025 | ||||||||||
| 53 | SRX23311021 | SRP484717 | Illumina NovaSeq 6000 | SRS20187350 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024865 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_162 (21PG53-1) | SAMN39503977 | 17/02/2025 | ||||||||||
| 54 | SRX23311022 | SRP484717 | Illumina NovaSeq 6000 | SRS20187352 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024866 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_163 (21PG53-1) | SAMN39503976 | 17/02/2025 | ||||||||||
| 55 | SRX23311023 | SRP484717 | Illumina NovaSeq 6000 | SRS20187351 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024867 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_164 (21PG53-1) | SAMN39503975 | 17/02/2025 | ||||||||||
| 56 | SRX23311408 | SRP484717 | Illumina NovaSeq 6000 | SRS20187736 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024868 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_165 (21PG53-1) | SAMN39503974 | 17/02/2025 | ||||||||||
| 57 | SRX23311409 | SRP484717 | Illumina NovaSeq 6000 | SRS20187738 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024869 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_166 (21PG53-1) | SAMN39503973 | 17/02/2025 | ||||||||||
| 58 | SRX23311410 | SRP484717 | Illumina NovaSeq 6000 | SRS20187737 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024870 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_167 (21PG53-1) | SAMN39503972 | 17/02/2025 | ||||||||||
| 59 | SRX23311411 | SRP484717 | Illumina NovaSeq 6000 | SRS20187741 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024871 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_168 (21PG53-1) | SAMN39503971 | 17/02/2025 | ||||||||||
| 60 | SRX23311412 | SRP484717 | Illumina NovaSeq 6000 | SRS20187742 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024872 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_169 (21PG53-1) | SAMN39503970 | 17/02/2025 | ||||||||||
| 61 | SRX23311413 | SRP484717 | Illumina NovaSeq 6000 | SRS20187740 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024873 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_17 (21PG39-2) | SAMN39503969 | 17/02/2025 | ||||||||||
| 62 | SRX23311414 | SRP484717 | Illumina NovaSeq 6000 | SRS20187739 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024874 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_170 (21PG53-1) | SAMN39503968 | 17/02/2025 | ||||||||||
| 63 | SRX23310987 | SRP484717 | Illumina NovaSeq 6000 | SRS20187315 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024877 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_173 (21PG77-2) | SAMN39503965 | 17/02/2025 | ||||||||||
| 64 | SRX23310988 | SRP484717 | Illumina NovaSeq 6000 | SRS20187316 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024878 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_174 (21PG77-2) | SAMN39503964 | 17/02/2025 | ||||||||||
| 65 | SRX23310990 | SRP484717 | Illumina NovaSeq 6000 | SRS20187318 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024880 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_176 (21PG77-2) | SAMN39503962 | 17/02/2025 | ||||||||||
| 66 | SRX23310991 | SRP484717 | Illumina NovaSeq 6000 | SRS20187319 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024881 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_177 (21PG77-2) | SAMN39503961 | 17/02/2025 | ||||||||||
| 67 | SRX23310992 | SRP484717 | Illumina NovaSeq 6000 | SRS20187321 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024882 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_178 (21PG77-2) | SAMN39503960 | 17/02/2025 | ||||||||||
| 68 | SRX23310993 | SRP484717 | Illumina NovaSeq 6000 | SRS20187320 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024883 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_179 (21PG77-2) | SAMN39503959 | 17/02/2025 | ||||||||||
| 69 | SRX23310844 | SRP484717 | Illumina NovaSeq 6000 | SRS20187173 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024884 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_18 (21PG40-1) | SAMN39503958 | 17/02/2025 | ||||||||||
| 70 | SRX23310845 | SRP484717 | Illumina NovaSeq 6000 | SRS20187172 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024885 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_180 (21PG77-2) | SAMN39503957 | 17/02/2025 | ||||||||||
| 71 | SRX23310846 | SRP484717 | Illumina NovaSeq 6000 | SRS20187175 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024886 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_181 (21PG77-2) | SAMN39503956 | 17/02/2025 | ||||||||||
| 72 | SRX23310847 | SRP484717 | Illumina NovaSeq 6000 | SRS20187174 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024887 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_182 (21PG77-2) | SAMN39503955 | 17/02/2025 | ||||||||||
| 73 | SRX23310848 | SRP484717 | Illumina NovaSeq 6000 | SRS20187176 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024888 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_183 (21PG77-2) | SAMN39503954 | 17/02/2025 | ||||||||||
| 74 | SRX23310849 | SRP484717 | Illumina NovaSeq 6000 | SRS20187178 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024889 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_184 (21PG77-2) | SAMN39503953 | 17/02/2025 | ||||||||||
| 75 | SRX23310850 | SRP484717 | Illumina NovaSeq 6000 | SRS20187177 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024890 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_185 (21PG77-2) | SAMN39503952 | 17/02/2025 | ||||||||||
| 76 | SRX23310851 | SRP484717 | Illumina NovaSeq 6000 | SRS20187179 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024891 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_186 (21PG50-1) | SAMN39503951 | 17/02/2025 | ||||||||||
| 77 | SRX23311024 | SRP484717 | Illumina NovaSeq 6000 | SRS20187349 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024892 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_187 (21PG50-1) | SAMN39503950 | 17/02/2025 | ||||||||||
| 78 | SRX23311025 | SRP484717 | Illumina NovaSeq 6000 | SRS20187354 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024893 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_188 (21PG50-1) | SAMN39503949 | 17/02/2025 | ||||||||||
| 79 | SRX23311027 | SRP484717 | Illumina NovaSeq 6000 | SRS20187353 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024895 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_19 (21PG40-1) | SAMN39503947 | 17/02/2025 | ||||||||||
| 80 | SRX23311029 | SRP484717 | Illumina NovaSeq 6000 | SRS20187356 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024897 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_191 (21PG50-1) | SAMN39503945 | 17/02/2025 | ||||||||||
| 81 | SRX23311030 | SRP484717 | Illumina NovaSeq 6000 | SRS20187359 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024898 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_192 (21PG50-1) | SAMN39503944 | 17/02/2025 | ||||||||||
| 82 | SRX23311031 | SRP484717 | Illumina NovaSeq 6000 | SRS20187360 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024899 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_193 (21PG57-1) | SAMN39503943 | 17/02/2025 | ||||||||||
| 83 | SRX23311417 | SRP484717 | Illumina NovaSeq 6000 | SRS20187747 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024901 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_195 (21PG57-1) | SAMN39503941 | 17/02/2025 | ||||||||||
| 84 | SRX23311418 | SRP484717 | Illumina NovaSeq 6000 | SRS20187745 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024902 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_196 (21PG57-1) | SAMN39503940 | 17/02/2025 | ||||||||||
| 85 | SRX23311419 | SRP484717 | Illumina NovaSeq 6000 | SRS20187746 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024903 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_198 (21PG57-1) | SAMN39503939 | 17/02/2025 | ||||||||||
| 86 | SRX23311420 | SRP484717 | Illumina NovaSeq 6000 | SRS20187749 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024904 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_2 (21PG50-2) | SAMN39503938 | 17/02/2025 | ||||||||||
| 87 | SRX23311421 | SRP484717 | Illumina NovaSeq 6000 | SRS20187748 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024905 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_20 (21PG40-1) | SAMN39503937 | 17/02/2025 | ||||||||||
| 88 | SRX23311422 | SRP484717 | Illumina NovaSeq 6000 | SRS20187750 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024906 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_200 (21PG57-1) | SAMN39503936 | 17/02/2025 | ||||||||||
| 89 | SRX23311423 | SRP484717 | Illumina NovaSeq 6000 | SRS20187753 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024907 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_201 (21PG57-1) | SAMN39503935 | 17/02/2025 | ||||||||||
| 90 | SRX23310994 | SRP484717 | Illumina NovaSeq 6000 | SRS20187322 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024908 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_202 (21PG57-1) | SAMN39503934 | 17/02/2025 | ||||||||||
| 91 | SRX23310995 | SRP484717 | Illumina NovaSeq 6000 | SRS20187323 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024909 | Late blastocyst: E5.5 | ICM: PE | Late blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_206 (21PG57-1) | SAMN39503933 | 17/02/2025 | ||||||||||
| 92 | SRX23310996 | SRP484717 | Illumina NovaSeq 6000 | SRS20187324 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024910 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_209 (21PG57-1) | SAMN39503932 | 17/02/2025 | ||||||||||
| 93 | SRX23310997 | SRP484717 | Illumina NovaSeq 6000 | SRS20187325 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024911 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_21 (21PG40-1) | SAMN39503931 | 17/02/2025 | ||||||||||
| 94 | SRX23310998 | SRP484717 | Illumina NovaSeq 6000 | SRS20187326 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024912 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_210 (21PG57-1) | SAMN39503930 | 17/02/2025 | ||||||||||
| 95 | SRX23311086 | SRP484717 | Illumina NovaSeq 6000 | SRS20187411 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024913 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_22 (21PG40-1) | SAMN39503929 | 17/02/2025 | ||||||||||
| 96 | SRX23311087 | SRP484717 | Illumina NovaSeq 6000 | SRS20187415 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024914 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_23 (21PG40-1) | SAMN39503928 | 17/02/2025 | ||||||||||
| 97 | SRX23311088 | SRP484717 | Illumina NovaSeq 6000 | SRS20187416 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024915 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_230 (21PG49-3) | SAMN39503927 | 17/02/2025 | ||||||||||
| 98 | SRX23310852 | SRP484717 | Illumina NovaSeq 6000 | SRS20187180 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024916 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_231 (21PG49-3) | SAMN39503926 | 17/02/2025 | ||||||||||
| 99 | SRX23310853 | SRP484717 | Illumina NovaSeq 6000 | SRS20187181 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024917 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_232 (21PG49-3) | SAMN39503925 | 17/02/2025 | ||||||||||
| 100 | SRX23310854 | SRP484717 | Illumina NovaSeq 6000 | SRS20187182 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024918 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_233 (21PG49-3) | SAMN39503924 | 17/02/2025 | ||||||||||
| 101 | SRX23310855 | SRP484717 | Illumina NovaSeq 6000 | SRS20187183 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024919 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_234 (21PG49-3) | SAMN39503923 | 17/02/2025 | ||||||||||
| 102 | SRX23310856 | SRP484717 | Illumina NovaSeq 6000 | SRS20187184 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024920 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_235 (21PG49-3) | SAMN39503922 | 17/02/2025 | ||||||||||
| 103 | SRX23310857 | SRP484717 | Illumina NovaSeq 6000 | SRS20187186 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024921 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_236 (21PG49-3) | SAMN39503921 | 17/02/2025 | ||||||||||
| 104 | SRX23310858 | SRP484717 | Illumina NovaSeq 6000 | SRS20187187 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024922 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_237 (21PG49-3) | SAMN39503920 | 17/02/2025 | ||||||||||
| 105 | SRX23310859 | SRP484717 | Illumina NovaSeq 6000 | SRS20187185 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024923 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_238 (21PG49-3) | SAMN39503919 | 17/02/2025 | ||||||||||
| 106 | SRX23311032 | SRP484717 | Illumina NovaSeq 6000 | SRS20187358 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024924 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_239 (21PG49-3) | SAMN39503918 | 17/02/2025 | ||||||||||
| 107 | SRX23311033 | SRP484717 | Illumina NovaSeq 6000 | SRS20187362 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024925 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_24 (21PG40-1) | SAMN39503917 | 17/02/2025 | ||||||||||
| 108 | SRX23311034 | SRP484717 | Illumina NovaSeq 6000 | SRS20187361 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024926 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_240 (21PG49-3) | SAMN39503916 | 17/02/2025 | ||||||||||
| 109 | SRX23311035 | SRP484717 | Illumina NovaSeq 6000 | SRS20187364 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024927 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_241 (21PG49-3) | SAMN39503915 | 17/02/2025 | ||||||||||
| 110 | SRX23311036 | SRP484717 | Illumina NovaSeq 6000 | SRS20187365 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024928 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_242 (21PG49-3) | SAMN39503914 | 17/02/2025 | ||||||||||
| 111 | SRX23311037 | SRP484717 | Illumina NovaSeq 6000 | SRS20187363 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024929 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_243 (21PG49-3) | SAMN39503913 | 17/02/2025 | ||||||||||
| 112 | SRX23311038 | SRP484717 | Illumina NovaSeq 6000 | SRS20187366 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024930 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_244 (21PG49-3) | SAMN39503912 | 17/02/2025 | ||||||||||
| 113 | SRX23311039 | SRP484717 | Illumina NovaSeq 6000 | SRS20187367 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024931 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_245 (21PG49-3) | SAMN39503911 | 17/02/2025 | ||||||||||
| 114 | SRX23311424 | SRP484717 | Illumina NovaSeq 6000 | SRS20187752 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024932 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_246 (21PG49-3) | SAMN39503910 | 17/02/2025 | ||||||||||
| 115 | SRX23311425 | SRP484717 | Illumina NovaSeq 6000 | SRS20187751 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024933 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_247 (21PG49-3) | SAMN39503909 | 17/02/2025 | ||||||||||
| 116 | SRX23311426 | SRP484717 | Illumina NovaSeq 6000 | SRS20187754 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024934 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_248 (21PG49-3) | SAMN39503908 | 17/02/2025 | ||||||||||
| 117 | SRX23311427 | SRP484717 | Illumina NovaSeq 6000 | SRS20187755 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024935 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_249 (21PG49-3) | SAMN39503907 | 17/02/2025 | ||||||||||
| 118 | SRX23311428 | SRP484717 | Illumina NovaSeq 6000 | SRS20187756 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024936 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_25 (21PG40-1) | SAMN39503906 | 17/02/2025 | ||||||||||
| 119 | SRX23311429 | SRP484717 | Illumina NovaSeq 6000 | SRS20187757 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024937 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_250 (21PG49-3) | SAMN39503905 | 17/02/2025 | ||||||||||
| 120 | SRX23311430 | SRP484717 | Illumina NovaSeq 6000 | SRS20187758 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024938 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_251 (21PG49-3) | SAMN39503904 | 17/02/2025 | ||||||||||
| 121 | SRX23311431 | SRP484717 | Illumina NovaSeq 6000 | SRS20187759 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024939 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_252 (21PG49-3) | SAMN39503903 | 17/02/2025 | ||||||||||
| 122 | SRX23311089 | SRP484717 | Illumina NovaSeq 6000 | SRS20187417 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024940 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_253 (21PG49-3) | SAMN39503902 | 17/02/2025 | ||||||||||
| 123 | SRX23311090 | SRP484717 | Illumina NovaSeq 6000 | SRS20187418 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024941 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_254 (21PG76-2) | SAMN39503901 | 17/02/2025 | ||||||||||
| 124 | SRX23311091 | SRP484717 | Illumina NovaSeq 6000 | SRS20187420 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024942 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_255 (21PG76-2) | SAMN39503900 | 17/02/2025 | ||||||||||
| 125 | SRX23311093 | SRP484717 | Illumina NovaSeq 6000 | SRS20187421 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024944 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_257 (20PG4-2) | SAMN39503898 | 17/02/2025 | ||||||||||
| 126 | SRX23311094 | SRP484717 | Illumina NovaSeq 6000 | SRS20187422 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024945 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_258 (20PG4-2) | SAMN39503897 | 17/02/2025 | ||||||||||
| 127 | SRX23311095 | SRP484717 | Illumina NovaSeq 6000 | SRS20187424 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024946 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_259 (20PG4-2) | SAMN39503896 | 17/02/2025 | ||||||||||
| 128 | SRX23311096 | SRP484717 | Illumina NovaSeq 6000 | SRS20187423 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024947 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_26 (21PG40-1) | SAMN39503895 | 17/02/2025 | ||||||||||
| 129 | SRX23310860 | SRP484717 | Illumina NovaSeq 6000 | SRS20187188 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024948 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_260 (20PG4-2) | SAMN39503894 | 17/02/2025 | ||||||||||
| 130 | SRX23310861 | SRP484717 | Illumina NovaSeq 6000 | SRS20187190 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024949 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_261 (20PG4-2) | SAMN39503893 | 17/02/2025 | ||||||||||
| 131 | SRX23310862 | SRP484717 | Illumina NovaSeq 6000 | SRS20187189 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024950 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_262 (20PG4-2) | SAMN39503892 | 17/02/2025 | ||||||||||
| 132 | SRX23310863 | SRP484717 | Illumina NovaSeq 6000 | SRS20187191 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024951 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_263 (20PG4-2) | SAMN39503891 | 17/02/2025 | ||||||||||
| 133 | SRX23310864 | SRP484717 | Illumina NovaSeq 6000 | SRS20187192 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024952 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_264 (20PG4-2) | SAMN39503890 | 17/02/2025 | ||||||||||
| 134 | SRX23310865 | SRP484717 | Illumina NovaSeq 6000 | SRS20187194 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024953 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_265 (20PG4-2) | SAMN39503889 | 17/02/2025 | ||||||||||
| 135 | SRX23310866 | SRP484717 | Illumina NovaSeq 6000 | SRS20187193 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024954 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_266 (20PG4-2) | SAMN39503888 | 17/02/2025 | ||||||||||
| 136 | SRX23310867 | SRP484717 | Illumina NovaSeq 6000 | SRS20187195 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024955 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_267 (20PG4-2) | SAMN39503887 | 17/02/2025 | ||||||||||
| 137 | SRX23311040 | SRP484717 | Illumina NovaSeq 6000 | SRS20187368 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024956 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_268 (20PG4-2) | SAMN39503886 | 17/02/2025 | ||||||||||
| 138 | SRX23311041 | SRP484717 | Illumina NovaSeq 6000 | SRS20187371 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024957 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_269 (20PG4-2) | SAMN39503885 | 17/02/2025 | ||||||||||
| 139 | SRX23311042 | SRP484717 | Illumina NovaSeq 6000 | SRS20187369 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024958 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_27 (21PG40-1) | SAMN39503884 | 17/02/2025 | ||||||||||
| 140 | SRX23311043 | SRP484717 | Illumina NovaSeq 6000 | SRS20187370 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024959 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_270 (20PG4-2) | SAMN39503883 | 17/02/2025 | ||||||||||
| 141 | SRX23311044 | SRP484717 | Illumina NovaSeq 6000 | SRS20187372 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024960 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_271 (20PG4-2) | SAMN39503882 | 17/02/2025 | ||||||||||
| 142 | SRX23311045 | SRP484717 | Illumina NovaSeq 6000 | SRS20187374 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024961 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_272 (20PG4-2) | SAMN39503881 | 17/02/2025 | ||||||||||
| 143 | SRX23311046 | SRP484717 | Illumina NovaSeq 6000 | SRS20187373 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024962 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_273 (20PG4-2) | SAMN39503880 | 17/02/2025 | ||||||||||
| 144 | SRX23311047 | SRP484717 | Illumina NovaSeq 6000 | SRS20187376 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024963 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_274 (20PG4-2) | SAMN39503879 | 17/02/2025 | ||||||||||
| 145 | SRX23311432 | SRP484717 | Illumina NovaSeq 6000 | SRS20187760 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024964 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_275 (20PG4-2) | SAMN39503878 | 17/02/2025 | ||||||||||
| 146 | SRX23311433 | SRP484717 | Illumina NovaSeq 6000 | SRS20187761 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024965 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_276 (20PG4-2) | SAMN39503877 | 17/02/2025 | ||||||||||
| 147 | SRX23311434 | SRP484717 | Illumina NovaSeq 6000 | SRS20187762 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024966 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_277 (20PG4-2) | SAMN39503876 | 17/02/2025 | ||||||||||
| 148 | SRX23311435 | SRP484717 | Illumina NovaSeq 6000 | SRS20187764 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024967 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_278 (20PG4-2) | SAMN39503875 | 17/02/2025 | ||||||||||
| 149 | SRX23311436 | SRP484717 | Illumina NovaSeq 6000 | SRS20187763 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024968 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_279 (20PG4-2) | SAMN39503874 | 17/02/2025 | ||||||||||
| 150 | SRX23311437 | SRP484717 | Illumina NovaSeq 6000 | SRS20187765 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024969 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_28 (21PG40-1) | SAMN39503873 | 17/02/2025 | ||||||||||
| 151 | SRX23311438 | SRP484717 | Illumina NovaSeq 6000 | SRS20187769 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024970 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_280 (20PG4-2) | SAMN39503872 | 17/02/2025 | ||||||||||
| 152 | SRX23311439 | SRP484717 | Illumina NovaSeq 6000 | SRS20187767 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024971 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_281 (20PG4-2) | SAMN39503871 | 17/02/2025 | ||||||||||
| 153 | SRX23311097 | SRP484717 | Illumina NovaSeq 6000 | SRS20187425 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024972 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_282 (20PG4-2) | SAMN39503870 | 17/02/2025 | ||||||||||
| 154 | SRX23311098 | SRP484717 | Illumina NovaSeq 6000 | SRS20187426 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024973 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_283 (20PG4-2) | SAMN39503869 | 17/02/2025 | ||||||||||
| 155 | SRX23311099 | SRP484717 | Illumina NovaSeq 6000 | SRS20187427 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024974 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_284 (20PG4-2) | SAMN39503868 | 17/02/2025 | ||||||||||
| 156 | SRX23311100 | SRP484717 | Illumina NovaSeq 6000 | SRS20187429 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024975 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_285 (20PG4-2) | SAMN39503867 | 17/02/2025 | ||||||||||
| 157 | SRX23311101 | SRP484717 | Illumina NovaSeq 6000 | SRS20187430 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024976 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_286 (20PG4-2) | SAMN39503866 | 17/02/2025 | ||||||||||
| 158 | SRX23311102 | SRP484717 | Illumina NovaSeq 6000 | SRS20187428 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024977 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_287 (20PG4-2) | SAMN39503865 | 17/02/2025 | ||||||||||
| 159 | SRX23311103 | SRP484717 | Illumina NovaSeq 6000 | SRS20187431 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024978 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_288 (21PG57-1) | SAMN39503864 | 17/02/2025 | ||||||||||
| 160 | SRX23310868 | SRP484717 | Illumina NovaSeq 6000 | SRS20187197 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024980 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_29 (21PG40-1) | SAMN39503862 | 17/02/2025 | ||||||||||
| 161 | SRX23310869 | SRP484717 | Illumina NovaSeq 6000 | SRS20187196 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024981 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_290 (20PG4-1) | SAMN39503861 | 17/02/2025 | ||||||||||
| 162 | SRX23310870 | SRP484717 | Illumina NovaSeq 6000 | SRS20187198 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024982 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_291 (20PG4-1) | SAMN39503860 | 17/02/2025 | ||||||||||
| 163 | SRX23310871 | SRP484717 | Illumina NovaSeq 6000 | SRS20187199 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024983 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_292 (20PG4-1) | SAMN39503859 | 17/02/2025 | ||||||||||
| 164 | SRX23310872 | SRP484717 | Illumina NovaSeq 6000 | SRS20187202 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024984 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_293 (20PG4-1) | SAMN39503858 | 17/02/2025 | ||||||||||
| 165 | SRX23310873 | SRP484717 | Illumina NovaSeq 6000 | SRS20187200 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024985 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_294 (20PG4-1) | SAMN39503857 | 17/02/2025 | ||||||||||
| 166 | SRX23310874 | SRP484717 | Illumina NovaSeq 6000 | SRS20187201 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024986 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_295 (20PG4-1) | SAMN39503856 | 17/02/2025 | ||||||||||
| 167 | SRX23310875 | SRP484717 | Illumina NovaSeq 6000 | SRS20187203 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024987 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_296 (20PG4-1) | SAMN39503855 | 17/02/2025 | ||||||||||
| 168 | SRX23311048 | SRP484717 | Illumina NovaSeq 6000 | SRS20187375 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024988 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_297 (20PG4-1) | SAMN39503854 | 17/02/2025 | ||||||||||
| 169 | SRX23311049 | SRP484717 | Illumina NovaSeq 6000 | SRS20187377 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024989 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_298 (20PG4-1) | SAMN39503853 | 17/02/2025 | ||||||||||
| 170 | SRX23311050 | SRP484717 | Illumina NovaSeq 6000 | SRS20187378 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024990 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_299 (20PG4-1) | SAMN39503852 | 17/02/2025 | ||||||||||
| 171 | SRX23311051 | SRP484717 | Illumina NovaSeq 6000 | SRS20187379 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024991 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_3 (21PG50-2) | SAMN39503851 | 17/02/2025 | ||||||||||
| 172 | SRX23311052 | SRP484717 | Illumina NovaSeq 6000 | SRS20187380 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024992 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_30 (21PG40-1) | SAMN39503850 | 17/02/2025 | ||||||||||
| 173 | SRX23311053 | SRP484717 | Illumina NovaSeq 6000 | SRS20187381 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024993 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_300 (20PG4-1) | SAMN39503849 | 17/02/2025 | ||||||||||
| 174 | SRX23311054 | SRP484717 | Illumina NovaSeq 6000 | SRS20187382 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024994 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_301 (20PG4-1) | SAMN39503848 | 17/02/2025 | ||||||||||
| 175 | SRX23311055 | SRP484717 | Illumina NovaSeq 6000 | SRS20187383 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024995 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_302 (20PG4-1) | SAMN39503847 | 17/02/2025 | ||||||||||
| 176 | SRX23311441 | SRP484717 | Illumina NovaSeq 6000 | SRS20187768 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024997 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_304 (20PG4-1) | SAMN39503845 | 17/02/2025 | ||||||||||
| 177 | SRX23311442 | SRP484717 | Illumina NovaSeq 6000 | SRS20187772 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024998 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_305 (20PG4-1) | SAMN39503844 | 17/02/2025 | ||||||||||
| 178 | SRX23311443 | SRP484717 | Illumina NovaSeq 6000 | SRS20187770 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024999 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_306 (20PG4-1) | SAMN39503843 | 17/02/2025 | ||||||||||
| 179 | SRX23311444 | SRP484717 | Illumina NovaSeq 6000 | SRS20187771 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025000 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_307 (20PG4-1) | SAMN39503842 | 17/02/2025 | ||||||||||
| 180 | SRX23311446 | SRP484717 | Illumina NovaSeq 6000 | SRS20187774 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025002 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_309 (20PG4-1) | SAMN39503840 | 17/02/2025 | ||||||||||
| 181 | SRX23311447 | SRP484717 | Illumina NovaSeq 6000 | SRS20187775 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025003 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_31 (21PG40-1) | SAMN39503839 | 17/02/2025 | ||||||||||
| 182 | SRX23311106 | SRP484717 | Illumina NovaSeq 6000 | SRS20187435 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025005 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_311 (20PG4-1) | SAMN39503837 | 17/02/2025 | ||||||||||
| 183 | SRX23311109 | SRP484717 | Illumina NovaSeq 6000 | SRS20187437 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025008 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_314 (21PG75-1) | SAMN39503834 | 17/02/2025 | ||||||||||
| 184 | SRX23311110 | SRP484717 | Illumina NovaSeq 6000 | SRS20187436 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025009 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_315 (21PG75-1) | SAMN39503833 | 17/02/2025 | ||||||||||
| 185 | SRX23311111 | SRP484717 | Illumina NovaSeq 6000 | SRS20187440 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025010 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_316 (21PG75-1) | SAMN39503832 | 17/02/2025 | ||||||||||
| 186 | SRX23310877 | SRP484717 | Illumina NovaSeq 6000 | SRS20187204 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025013 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_319 (21PG75-1) | SAMN39503829 | 17/02/2025 | ||||||||||
| 187 | SRX23310878 | SRP484717 | Illumina NovaSeq 6000 | SRS20187206 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025014 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_32 (21PG40-1) | SAMN39503828 | 17/02/2025 | ||||||||||
| 188 | SRX23310879 | SRP484717 | Illumina NovaSeq 6000 | SRS20187207 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025015 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_320 (21PG75-1) | SAMN39503827 | 17/02/2025 | ||||||||||
| 189 | SRX23310880 | SRP484717 | Illumina NovaSeq 6000 | SRS20187208 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025016 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_321 (21PG75-1) | SAMN39503826 | 17/02/2025 | ||||||||||
| 190 | SRX23310881 | SRP484717 | Illumina NovaSeq 6000 | SRS20187209 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025017 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_322 (21PG75-1) | SAMN39503825 | 17/02/2025 | ||||||||||
| 191 | SRX23310882 | SRP484717 | Illumina NovaSeq 6000 | SRS20187212 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025018 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_323 (21PG75-1) | SAMN39503824 | 17/02/2025 | ||||||||||
| 192 | SRX23310883 | SRP484717 | Illumina NovaSeq 6000 | SRS20187211 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025019 | Late blastocyst: E6 | TE: polar | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_324 (21PG75-1) | SAMN39503823 | 17/02/2025 | ||||||||||
| 193 | SRX23311056 | SRP484717 | Illumina NovaSeq 6000 | SRS20187384 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025020 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_325 (21PG75-1) | SAMN39503822 | 17/02/2025 | ||||||||||
| 194 | SRX23311057 | SRP484717 | Illumina NovaSeq 6000 | SRS20187386 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025021 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_326 (21PG75-1) | SAMN39503821 | 17/02/2025 | ||||||||||
| 195 | SRX23311059 | SRP484717 | Illumina NovaSeq 6000 | SRS20187385 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025023 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_328 (21PG75-1) | SAMN39503819 | 17/02/2025 | ||||||||||
| 196 | SRX23311060 | SRP484717 | Illumina NovaSeq 6000 | SRS20187389 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025024 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_329 (21PG75-1) | SAMN39503818 | 17/02/2025 | ||||||||||
| 197 | SRX23311061 | SRP484717 | Illumina NovaSeq 6000 | SRS20187390 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025025 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_33 (21PG40-1) | SAMN39503817 | 17/02/2025 | ||||||||||
| 198 | SRX23311062 | SRP484717 | Illumina NovaSeq 6000 | SRS20187388 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025026 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_330 (21PG75-1) | SAMN39503816 | 17/02/2025 | ||||||||||
| 199 | SRX23311063 | SRP484717 | Illumina NovaSeq 6000 | SRS20187391 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025027 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_331 (21PG75-1) | SAMN39503815 | 17/02/2025 | ||||||||||
| 200 | SRX23311448 | SRP484717 | Illumina NovaSeq 6000 | SRS20187776 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025028 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_332 (21PG75-1) | SAMN39503814 | 17/02/2025 | ||||||||||
| 201 | SRX23311449 | SRP484717 | Illumina NovaSeq 6000 | SRS20187777 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025029 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_333 (21PG75-1) | SAMN39503813 | 17/02/2025 | ||||||||||
| 202 | SRX23311450 | SRP484717 | Illumina NovaSeq 6000 | SRS20187778 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025030 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_334 (21PG75-1) | SAMN39503812 | 17/02/2025 | ||||||||||
| 203 | SRX23311451 | SRP484717 | Illumina NovaSeq 6000 | SRS20187780 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025031 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_335 (21PG52-2) | SAMN39503811 | 17/02/2025 | ||||||||||
| 204 | SRX23311452 | SRP484717 | Illumina NovaSeq 6000 | SRS20187779 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025032 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_336 (21PG52-2) | SAMN39503810 | 17/02/2025 | ||||||||||
| 205 | SRX23311453 | SRP484717 | Illumina NovaSeq 6000 | SRS20187781 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025033 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_337 (21PG52-2) | SAMN39503809 | 17/02/2025 | ||||||||||
| 206 | SRX23311454 | SRP484717 | Illumina NovaSeq 6000 | SRS20187782 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025034 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_338 (21PG52-2) | SAMN39503808 | 17/02/2025 | ||||||||||
| 207 | SRX23311113 | SRP484717 | Illumina NovaSeq 6000 | SRS20187442 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025036 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_34 (21PG40-1) | SAMN39503806 | 17/02/2025 | ||||||||||
| 208 | SRX23311114 | SRP484717 | Illumina NovaSeq 6000 | SRS20187441 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025037 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_340 (21PG52-2) | SAMN39503805 | 17/02/2025 | ||||||||||
| 209 | SRX23311115 | SRP484717 | Illumina NovaSeq 6000 | SRS20187443 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025038 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_341 (21PG52-2) | SAMN39503804 | 17/02/2025 | ||||||||||
| 210 | SRX23311116 | SRP484717 | Illumina NovaSeq 6000 | SRS20187444 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025039 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_342 (21PG52-2) | SAMN39503803 | 17/02/2025 | ||||||||||
| 211 | SRX23311117 | SRP484717 | Illumina NovaSeq 6000 | SRS20187446 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025040 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_343 (21PG52-2) | SAMN39503802 | 17/02/2025 | ||||||||||
| 212 | SRX23311118 | SRP484717 | Illumina NovaSeq 6000 | SRS20187445 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025041 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_344 (21PG52-2) | SAMN39503801 | 17/02/2025 | ||||||||||
| 213 | SRX23311119 | SRP484717 | Illumina NovaSeq 6000 | SRS20187447 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025042 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_345 (21PG52-2) | SAMN39503800 | 17/02/2025 | ||||||||||
| 214 | SRX23311120 | SRP484717 | Illumina NovaSeq 6000 | SRS20187448 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025043 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_346 (21PG52-2) | SAMN39503799 | 17/02/2025 | ||||||||||
| 215 | SRX23310884 | SRP484717 | Illumina NovaSeq 6000 | SRS20187210 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025044 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_347 (21PG52-2) | SAMN39503798 | 17/02/2025 | ||||||||||
| 216 | SRX23310885 | SRP484717 | Illumina NovaSeq 6000 | SRS20187213 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025045 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_348 (21PG52-2) | SAMN39503797 | 17/02/2025 | ||||||||||
| 217 | SRX23310886 | SRP484717 | Illumina NovaSeq 6000 | SRS20187215 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025046 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_349 (21PG52-2) | SAMN39503796 | 17/02/2025 | ||||||||||
| 218 | SRX23310887 | SRP484717 | Illumina NovaSeq 6000 | SRS20187214 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025047 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_35 (21PG40-1) | SAMN39503795 | 17/02/2025 | ||||||||||
| 219 | SRX23310889 | SRP484717 | Illumina NovaSeq 6000 | SRS20187217 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025049 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_351 (21PG52-2) | SAMN39503793 | 17/02/2025 | ||||||||||
| 220 | SRX23310890 | SRP484717 | Illumina NovaSeq 6000 | SRS20187218 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025050 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_352 (21PG52-2) | SAMN39503792 | 17/02/2025 | ||||||||||
| 221 | SRX23310891 | SRP484717 | Illumina NovaSeq 6000 | SRS20187219 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025051 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_353 (21PG41-1) | SAMN39503791 | 17/02/2025 | ||||||||||
| 222 | SRX23311064 | SRP484717 | Illumina NovaSeq 6000 | SRS20187392 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025052 | 16-32 cell: E4.75 | Prelineage: Morula | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_354 (21PG41-1) | SAMN39503790 | 17/02/2025 | ||||||||||
| 223 | SRX23311065 | SRP484717 | Illumina NovaSeq 6000 | SRS20187393 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025053 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_355 (21PG41-1) | SAMN39503789 | 17/02/2025 | ||||||||||
| 224 | SRX23311066 | SRP484717 | Illumina NovaSeq 6000 | SRS20187395 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025054 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_356 (21PG41-1) | SAMN39503788 | 17/02/2025 | ||||||||||
| 225 | SRX23311067 | SRP484717 | Illumina NovaSeq 6000 | SRS20187396 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025055 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_357 (21PG41-1) | SAMN39503787 | 17/02/2025 | ||||||||||
| 226 | SRX23311068 | SRP484717 | Illumina NovaSeq 6000 | SRS20187394 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025056 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_358 (21PG41-1) | SAMN39503786 | 17/02/2025 | ||||||||||
| 227 | SRX23311069 | SRP484717 | Illumina NovaSeq 6000 | SRS20187397 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025057 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_359 (21PG41-1) | SAMN39503785 | 17/02/2025 | ||||||||||
| 228 | SRX23311070 | SRP484717 | Illumina NovaSeq 6000 | SRS20187398 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025058 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_36 (21PG40-1) | SAMN39503784 | 17/02/2025 | ||||||||||
| 229 | SRX23311071 | SRP484717 | Illumina NovaSeq 6000 | SRS20187399 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025059 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_360 (21PG41-1) | SAMN39503783 | 17/02/2025 | ||||||||||
| 230 | SRX23311458 | SRP484717 | Illumina NovaSeq 6000 | SRS20187786 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025062 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_37 (21PG40-1) | SAMN39503780 | 17/02/2025 | ||||||||||
| 231 | SRX23311459 | SRP484717 | Illumina NovaSeq 6000 | SRS20187787 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025063 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_38 (21PG40-1) | SAMN39503779 | 17/02/2025 | ||||||||||
| 232 | SRX23311460 | SRP484717 | Illumina NovaSeq 6000 | SRS20187788 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025064 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_39 (21PG40-1) | SAMN39503778 | 17/02/2025 | ||||||||||
| 233 | SRX23311461 | SRP484717 | Illumina NovaSeq 6000 | SRS20187789 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025065 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_4 (21PG50-2) | SAMN39503777 | 17/02/2025 | ||||||||||
| 234 | SRX23311462 | SRP484717 | Illumina NovaSeq 6000 | SRS20187791 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025066 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_40 (21PG40-1) | SAMN39503776 | 17/02/2025 | ||||||||||
| 235 | SRX23311463 | SRP484717 | Illumina NovaSeq 6000 | SRS20187790 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025067 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_41 (21PG40-1) | SAMN39503775 | 17/02/2025 | ||||||||||
| 236 | SRX23311121 | SRP484717 | Illumina NovaSeq 6000 | SRS20187449 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025068 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_42 (21PG40-1) | SAMN39503774 | 17/02/2025 | ||||||||||
| 237 | SRX23311122 | SRP484717 | Illumina NovaSeq 6000 | SRS20187450 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025069 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_43 (21PG51-2) | SAMN39503773 | 17/02/2025 | ||||||||||
| 238 | SRX23311123 | SRP484717 | Illumina NovaSeq 6000 | SRS20187452 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025070 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_44 (21PG51-2) | SAMN39503772 | 17/02/2025 | ||||||||||
| 239 | SRX23311124 | SRP484717 | Illumina NovaSeq 6000 | SRS20187451 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025071 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_45 (21PG51-2) | SAMN39503771 | 17/02/2025 | ||||||||||
| 240 | SRX23311125 | SRP484717 | Illumina NovaSeq 6000 | SRS20187453 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025072 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_46 (21PG51-2) | SAMN39503770 | 17/02/2025 | ||||||||||
| 241 | SRX23311126 | SRP484717 | Illumina NovaSeq 6000 | SRS20187455 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025073 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_47 (21PG51-2) | SAMN39503769 | 17/02/2025 | ||||||||||
| 242 | SRX23311127 | SRP484717 | Illumina NovaSeq 6000 | SRS20187454 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025074 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_48 (21PG51-2) | SAMN39503768 | 17/02/2025 | ||||||||||
| 243 | SRX23311128 | SRP484717 | Illumina NovaSeq 6000 | SRS20187456 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025075 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_49 (21PG51-2) | SAMN39503767 | 17/02/2025 | ||||||||||
| 244 | SRX23310892 | SRP484717 | Illumina NovaSeq 6000 | SRS20187220 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025076 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_5 (21PG50-2) | SAMN39503766 | 17/02/2025 | ||||||||||
| 245 | SRX23310893 | SRP484717 | Illumina NovaSeq 6000 | SRS20187221 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025077 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_50 (21PG51-2) | SAMN39503765 | 17/02/2025 | ||||||||||
| 246 | SRX23310894 | SRP484717 | Illumina NovaSeq 6000 | SRS20187222 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025078 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_51 (21PG51-2) | SAMN39503764 | 17/02/2025 | ||||||||||
| 247 | SRX23310895 | SRP484717 | Illumina NovaSeq 6000 | SRS20187224 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025079 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_52 (21PG51-2) | SAMN39503763 | 17/02/2025 | ||||||||||
| 248 | SRX23310896 | SRP484717 | Illumina NovaSeq 6000 | SRS20187223 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025080 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_53 (21PG51-2) | SAMN39503762 | 17/02/2025 | ||||||||||
| 249 | SRX23310897 | SRP484717 | Illumina NovaSeq 6000 | SRS20187226 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025081 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_54 (21PG51-2) | SAMN39503761 | 17/02/2025 | ||||||||||
| 250 | SRX23310898 | SRP484717 | Illumina NovaSeq 6000 | SRS20187225 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025082 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_55 (21PG51-2) | SAMN39503760 | 17/02/2025 | ||||||||||
| 251 | SRX23310899 | SRP484717 | Illumina NovaSeq 6000 | SRS20187227 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025083 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_56 (21PG51-2) | SAMN39503759 | 17/02/2025 | ||||||||||
| 252 | SRX23311072 | SRP484717 | Illumina NovaSeq 6000 | SRS20187401 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025084 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_57 (21PG51-2) | SAMN39503758 | 17/02/2025 | ||||||||||
| 253 | SRX23311073 | SRP484717 | Illumina NovaSeq 6000 | SRS20187402 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025085 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_58 (21PG51-2) | SAMN39503757 | 17/02/2025 | ||||||||||
| 254 | SRX23311074 | SRP484717 | Illumina NovaSeq 6000 | SRS20187400 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025086 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_59 (21PG51-2) | SAMN39503756 | 17/02/2025 | ||||||||||
| 255 | SRX23311075 | SRP484717 | Illumina NovaSeq 6000 | SRS20187403 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025087 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_6 (21PG50-2) | SAMN39503755 | 17/02/2025 | ||||||||||
| 256 | SRX23311076 | SRP484717 | Illumina NovaSeq 6000 | SRS20187405 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025088 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_60 (21PG51-2) | SAMN39503754 | 17/02/2025 | ||||||||||
| 257 | SRX23311077 | SRP484717 | Illumina NovaSeq 6000 | SRS20187404 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025089 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_61 (21PG51-2) | SAMN39503753 | 17/02/2025 | ||||||||||
| 258 | SRX23311078 | SRP484717 | Illumina NovaSeq 6000 | SRS20187406 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025090 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_62 (21PG51-3) | SAMN39503752 | 17/02/2025 | ||||||||||
| 259 | SRX23311079 | SRP484717 | Illumina NovaSeq 6000 | SRS20187408 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025091 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_63 (21PG51-3) | SAMN39503751 | 17/02/2025 | ||||||||||
| 260 | SRX23311464 | SRP484717 | Illumina NovaSeq 6000 | SRS20187792 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025092 | Early blastocyst: E4.5 | ICM: PE | Early blastocyst: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_64 (21PG51-3) | SAMN39503750 | 17/02/2025 | ||||||||||
| 261 | SRX23311465 | SRP484717 | Illumina NovaSeq 6000 | SRS20187793 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025093 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_65 (21PG51-3) | SAMN39503749 | 17/02/2025 | ||||||||||
| 262 | SRX23311466 | SRP484717 | Illumina NovaSeq 6000 | SRS20187794 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025094 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_66 (21PG51-3) | SAMN39503748 | 17/02/2025 | ||||||||||
| 263 | SRX23311467 | SRP484717 | Illumina NovaSeq 6000 | SRS20187797 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025095 | Early blastocyst: E4.5 | ICM: ICM | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_67 (21PG51-3) | SAMN39503747 | 17/02/2025 | ||||||||||
| 264 | SRX23311468 | SRP484717 | Illumina NovaSeq 6000 | SRS20187795 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025096 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_68 (21PG51-3) | SAMN39503746 | 17/02/2025 | ||||||||||
| 265 | SRX23311469 | SRP484717 | Illumina NovaSeq 6000 | SRS20187796 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025097 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_69 (21PG51-3) | SAMN39503745 | 17/02/2025 | ||||||||||
| 266 | SRX23311470 | SRP484717 | Illumina NovaSeq 6000 | SRS20187798 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025098 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_7 (21PG50-2) | SAMN39503744 | 17/02/2025 | ||||||||||
| 267 | SRX23311471 | SRP484717 | Illumina NovaSeq 6000 | SRS20187799 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025099 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_70 (21PG51-3) | SAMN39503743 | 17/02/2025 | ||||||||||
| 268 | SRX23311129 | SRP484717 | Illumina NovaSeq 6000 | SRS20187457 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025100 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_71 (21PG51-3) | SAMN39503742 | 17/02/2025 | ||||||||||
| 269 | SRX23311130 | SRP484717 | Illumina NovaSeq 6000 | SRS20187458 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025101 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_72 (21PG51-3) | SAMN39503741 | 17/02/2025 | ||||||||||
| 270 | SRX23311131 | SRP484717 | Illumina NovaSeq 6000 | SRS20187459 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025102 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_73 (21PG51-3) | SAMN39503740 | 17/02/2025 | ||||||||||
| 271 | SRX23311132 | SRP484717 | Illumina NovaSeq 6000 | SRS20187461 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025103 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_74 (21PG76-1) | SAMN39503739 | 17/02/2025 | ||||||||||
| 272 | SRX23311133 | SRP484717 | Illumina NovaSeq 6000 | SRS20187460 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025104 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_75 (21PG76-1) | SAMN39503738 | 17/02/2025 | ||||||||||
| 273 | SRX23311134 | SRP484717 | Illumina NovaSeq 6000 | SRS20187462 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025105 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_76 (21PG76-1) | SAMN39503737 | 17/02/2025 | ||||||||||
| 274 | SRX23310901 | SRP484717 | Illumina NovaSeq 6000 | SRS20187229 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025109 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_8 (21PG50-2) | SAMN39503733 | 17/02/2025 | ||||||||||
| 275 | SRX23310902 | SRP484717 | Illumina NovaSeq 6000 | SRS20187230 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025110 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_80 (21PG76-2) | SAMN39503732 | 17/02/2025 | ||||||||||
| 276 | SRX23311082 | SRP484717 | Illumina NovaSeq 6000 | SRS20187410 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025118 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_88 (21PG76-2) | SAMN39503724 | 17/02/2025 | ||||||||||
| 277 | SRX23311083 | SRP484717 | Illumina NovaSeq 6000 | SRS20187412 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025119 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_89 (21PG76-2) | SAMN39503723 | 17/02/2025 | ||||||||||
| 278 | SRX23311084 | SRP484717 | Illumina NovaSeq 6000 | SRS20187413 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025120 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_9 (21PG39-1) | SAMN39503722 | 17/02/2025 | ||||||||||
| 279 | SRX23311085 | SRP484717 | Illumina NovaSeq 6000 | SRS20187414 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025121 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_90 (21PG76-2) | SAMN39503721 | 17/02/2025 | ||||||||||
| 280 | SRX23311472 | SRP484717 | Illumina NovaSeq 6000 | SRS20187800 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025124 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_93 (21PG76-2) | SAMN39503718 | 17/02/2025 | ||||||||||
| 281 | SRX23311473 | SRP484717 | Illumina NovaSeq 6000 | SRS20187803 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025125 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_94 (21PG76-2) | SAMN39503717 | 17/02/2025 | ||||||||||
| 282 | SRX23311475 | SRP484717 | Illumina NovaSeq 6000 | SRS20187804 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025127 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_96 (21PG76-2) | SAMN39503715 | 17/02/2025 | ||||||||||
| 283 | SRX23311476 | SRP484717 | Illumina NovaSeq 6000 | SRS20187802 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025128 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_97 (21PG55-2) | SAMN39503714 | 17/02/2025 | ||||||||||
| 284 | SRX23311477 | SRP484717 | Illumina NovaSeq 6000 | SRS20187805 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025129 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_98 (21PG55-2) | SAMN39503713 | 17/02/2025 | ||||||||||
| 285 | SRX23311478 | SRP484717 | Illumina NovaSeq 6000 | SRS20187806 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025130 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_99 (21PG55-2) | SAMN39503712 | 17/02/2025 | ||||||||||
| 286 | SRX23311479 | SRP484717 | Illumina NovaSeq 6000 | SRS20187808 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025131 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_1 (21PG50-3) | SAMN39503711 | 17/02/2025 | ||||||||||
| 287 | SRX23311137 | SRP484717 | Illumina NovaSeq 6000 | SRS20187463 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025132 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_10 (21PG77-1) | SAMN39503710 | 17/02/2025 | ||||||||||
| 288 | SRX23311138 | SRP484717 | Illumina NovaSeq 6000 | SRS20187466 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025133 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_100 (21PG55-3) | SAMN39503709 | 17/02/2025 | ||||||||||
| 289 | SRX23311139 | SRP484717 | Illumina NovaSeq 6000 | SRS20187467 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025134 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_101 (21PG55-3) | SAMN39503708 | 17/02/2025 | ||||||||||
| 290 | SRX23311140 | SRP484717 | Illumina NovaSeq 6000 | SRS20187469 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025135 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_102 (21PG55-3) | SAMN39503707 | 17/02/2025 | ||||||||||
| 291 | SRX23311141 | SRP484717 | Illumina NovaSeq 6000 | SRS20187470 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025136 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_103 (21PG55-3) | SAMN39503706 | 17/02/2025 | ||||||||||
| 292 | SRX23311142 | SRP484717 | Illumina NovaSeq 6000 | SRS20187468 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025137 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_104 (21PG55-3) | SAMN39503705 | 17/02/2025 | ||||||||||
| 293 | SRX23311143 | SRP484717 | Illumina NovaSeq 6000 | SRS20187472 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025138 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_105 (21PG55-3) | SAMN39503704 | 17/02/2025 | ||||||||||
| 294 | SRX23311144 | SRP484717 | Illumina NovaSeq 6000 | SRS20187471 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025139 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_106 (21PG55-3) | SAMN39503703 | 17/02/2025 | ||||||||||
| 295 | SRX23310908 | SRP484717 | Illumina NovaSeq 6000 | SRS20187237 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025140 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_107 (21PG55-3) | SAMN39503702 | 17/02/2025 | ||||||||||
| 296 | SRX23310909 | SRP484717 | Illumina NovaSeq 6000 | SRS20187236 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025141 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_108 (21PG55-3) | SAMN39503701 | 17/02/2025 | ||||||||||
| 297 | SRX23310910 | SRP484717 | Illumina NovaSeq 6000 | SRS20187238 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025142 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_109 (21PG55-3) | SAMN39503700 | 17/02/2025 | ||||||||||
| 298 | SRX23310911 | SRP484717 | Illumina NovaSeq 6000 | SRS20187239 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025143 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_11 (21PG77-1) | SAMN39503699 | 17/02/2025 | ||||||||||
| 299 | SRX23311312 | SRP484717 | Illumina NovaSeq 6000 | SRS20187640 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025144 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_110 (21PG55-3) | SAMN39503698 | 17/02/2025 | ||||||||||
| 300 | SRX23311313 | SRP484717 | Illumina NovaSeq 6000 | SRS20187641 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025145 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_111 (21PG55-3) | SAMN39503697 | 17/02/2025 | ||||||||||
| 301 | SRX23311314 | SRP484717 | Illumina NovaSeq 6000 | SRS20187643 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025146 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_112 (21PG55-3) | SAMN39503696 | 17/02/2025 | ||||||||||
| 302 | SRX23311175 | SRP484717 | Illumina NovaSeq 6000 | SRS20187504 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025148 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_114 (21PG55-3) | SAMN39503694 | 17/02/2025 | ||||||||||
| 303 | SRX23311176 | SRP484717 | Illumina NovaSeq 6000 | SRS20187503 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025149 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_115 (21PG55-3) | SAMN39503693 | 17/02/2025 | ||||||||||
| 304 | SRX23311177 | SRP484717 | Illumina NovaSeq 6000 | SRS20187505 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025150 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_116 (21PG49-1) | SAMN39503692 | 17/02/2025 | ||||||||||
| 305 | SRX23311178 | SRP484717 | Illumina NovaSeq 6000 | SRS20187506 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025151 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_117 (21PG49-1) | SAMN39503691 | 17/02/2025 | ||||||||||
| 306 | SRX23311179 | SRP484717 | Illumina NovaSeq 6000 | SRS20187507 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025152 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_118 (21PG49-1) | SAMN39503690 | 17/02/2025 | ||||||||||
| 307 | SRX23311180 | SRP484717 | Illumina NovaSeq 6000 | SRS20187508 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025153 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_119 (21PG49-1) | SAMN39503689 | 17/02/2025 | ||||||||||
| 308 | SRX23311181 | SRP484717 | Illumina NovaSeq 6000 | SRS20187509 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025154 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_12 (21PG77-1) | SAMN39503688 | 17/02/2025 | ||||||||||
| 309 | SRX23311182 | SRP484717 | Illumina NovaSeq 6000 | SRS20187510 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025155 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_120 (21PG49-1) | SAMN39503687 | 17/02/2025 | ||||||||||
| 310 | SRX23311480 | SRP484717 | Illumina NovaSeq 6000 | SRS20187807 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025156 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_121 (21PG49-1) | SAMN39503686 | 17/02/2025 | ||||||||||
| 311 | SRX23311481 | SRP484717 | Illumina NovaSeq 6000 | SRS20187809 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025157 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_122 (21PG49-1) | SAMN39503685 | 17/02/2025 | ||||||||||
| 312 | SRX23311483 | SRP484717 | Illumina NovaSeq 6000 | SRS20187811 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025159 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_124 (21PG49-1) | SAMN39503683 | 17/02/2025 | ||||||||||
| 313 | SRX23311484 | SRP484717 | Illumina NovaSeq 6000 | SRS20187812 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025160 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_125 (21PG49-1) | SAMN39503682 | 17/02/2025 | ||||||||||
| 314 | SRX23311485 | SRP484717 | Illumina NovaSeq 6000 | SRS20187813 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025161 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_126 (21PG49-1) | SAMN39503681 | 17/02/2025 | ||||||||||
| 315 | SRX23310912 | SRP484717 | Illumina NovaSeq 6000 | SRS20187240 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025162 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_127 (21PG49-1) | SAMN39503680 | 17/02/2025 | ||||||||||
| 316 | SRX23310913 | SRP484717 | Illumina NovaSeq 6000 | SRS20187241 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025163 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_128 (21PG49-1) | SAMN39503679 | 17/02/2025 | ||||||||||
| 317 | SRX23311146 | SRP484717 | Illumina NovaSeq 6000 | SRS20187474 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025165 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_13 (21PG77-1) | SAMN39503677 | 17/02/2025 | ||||||||||
| 318 | SRX23311148 | SRP484717 | Illumina NovaSeq 6000 | SRS20187475 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025167 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_131 (21PG49-2) | SAMN39503675 | 17/02/2025 | ||||||||||
| 319 | SRX23311149 | SRP484717 | Illumina NovaSeq 6000 | SRS20187480 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025168 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_132 (21PG49-2) | SAMN39503674 | 17/02/2025 | ||||||||||
| 320 | SRX23311150 | SRP484717 | Illumina NovaSeq 6000 | SRS20187479 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025169 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_133 (21PG49-2) | SAMN39503673 | 17/02/2025 | ||||||||||
| 321 | SRX23311151 | SRP484717 | Illumina NovaSeq 6000 | SRS20187477 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025170 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_134 (21PG49-2) | SAMN39503672 | 17/02/2025 | ||||||||||
| 322 | SRX23311152 | SRP484717 | Illumina NovaSeq 6000 | SRS20187478 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025171 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_135 (21PG49-2) | SAMN39503671 | 17/02/2025 | ||||||||||
| 323 | SRX23311316 | SRP484717 | Illumina NovaSeq 6000 | SRS20187642 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025172 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_136 (21PG49-2) | SAMN39503670 | 17/02/2025 | ||||||||||
| 324 | SRX23311317 | SRP484717 | Illumina NovaSeq 6000 | SRS20187645 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025173 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_137 (21PG49-2) | SAMN39503669 | 17/02/2025 | ||||||||||
| 325 | SRX23311318 | SRP484717 | Illumina NovaSeq 6000 | SRS20187646 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025174 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_138 (21PG49-2) | SAMN39503668 | 17/02/2025 | ||||||||||
| 326 | SRX23311319 | SRP484717 | Illumina NovaSeq 6000 | SRS20187648 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025175 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_139 (21PG49-2) | SAMN39503667 | 17/02/2025 | ||||||||||
| 327 | SRX23311320 | SRP484717 | Illumina NovaSeq 6000 | SRS20187647 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025176 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_14 (21PG77-1) | SAMN39503666 | 17/02/2025 | ||||||||||
| 328 | SRX23311321 | SRP484717 | Illumina NovaSeq 6000 | SRS20187649 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025177 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_140 (21PG49-2) | SAMN39503665 | 17/02/2025 | ||||||||||
| 329 | SRX23311322 | SRP484717 | Illumina NovaSeq 6000 | SRS20187650 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025178 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_141 (21PG53-2) | SAMN39503664 | 17/02/2025 | ||||||||||
| 330 | SRX23311323 | SRP484717 | Illumina NovaSeq 6000 | SRS20187652 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025179 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_142 (21PG53-2) | SAMN39503663 | 17/02/2025 | ||||||||||
| 331 | SRX23311183 | SRP484717 | Illumina NovaSeq 6000 | SRS20187511 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025180 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_143 (21PG53-2) | SAMN39503662 | 17/02/2025 | ||||||||||
| 332 | SRX23311184 | SRP484717 | Illumina NovaSeq 6000 | SRS20187512 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025181 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_144 (21PG53-2) | SAMN39503661 | 17/02/2025 | ||||||||||
| 333 | SRX23311185 | SRP484717 | Illumina NovaSeq 6000 | SRS20187514 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025182 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_145 (21PG53-2) | SAMN39503660 | 17/02/2025 | ||||||||||
| 334 | SRX23311186 | SRP484717 | Illumina NovaSeq 6000 | SRS20187513 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025183 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_146 (21PG53-2) | SAMN39503659 | 17/02/2025 | ||||||||||
| 335 | SRX23311187 | SRP484717 | Illumina NovaSeq 6000 | SRS20187518 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025184 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_147 (21PG53-2) | SAMN39503658 | 17/02/2025 | ||||||||||
| 336 | SRX23311188 | SRP484717 | Illumina NovaSeq 6000 | SRS20187515 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025185 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_148 (21PG53-2) | SAMN39503657 | 17/02/2025 | ||||||||||
| 337 | SRX23311189 | SRP484717 | Illumina NovaSeq 6000 | SRS20187516 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025186 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_149 (21PG53-2) | SAMN39503656 | 17/02/2025 | ||||||||||
| 338 | SRX23311190 | SRP484717 | Illumina NovaSeq 6000 | SRS20187519 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025187 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_15 (21PG77-1) | SAMN39503655 | 17/02/2025 | ||||||||||
| 339 | SRX23310914 | SRP484717 | Illumina NovaSeq 6000 | SRS20187242 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025188 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_150 (21PG53-2) | SAMN39503654 | 17/02/2025 | ||||||||||
| 340 | SRX23310915 | SRP484717 | Illumina NovaSeq 6000 | SRS20187243 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025189 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_151 (21PG53-2) | SAMN39503653 | 17/02/2025 | ||||||||||
| 341 | SRX23310916 | SRP484717 | Illumina NovaSeq 6000 | SRS20187244 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025190 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_152 (21PG53-2) | SAMN39503652 | 17/02/2025 | ||||||||||
| 342 | SRX23310917 | SRP484717 | Illumina NovaSeq 6000 | SRS20187245 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025191 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_153 (21PG53-2) | SAMN39503651 | 17/02/2025 | ||||||||||
| 343 | SRX23310918 | SRP484717 | Illumina NovaSeq 6000 | SRS20187246 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025192 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_154 (21PG53-2) | SAMN39503650 | 17/02/2025 | ||||||||||
| 344 | SRX23310919 | SRP484717 | Illumina NovaSeq 6000 | SRS20187247 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025193 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_155 (21PG53-2) | SAMN39503649 | 17/02/2025 | ||||||||||
| 345 | SRX23310920 | SRP484717 | Illumina NovaSeq 6000 | SRS20187248 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025194 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_156 (21PG53-2) | SAMN39503648 | 17/02/2025 | ||||||||||
| 346 | SRX23310921 | SRP484717 | Illumina NovaSeq 6000 | SRS20187249 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025195 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_157 (21PG53-2) | SAMN39503647 | 17/02/2025 | ||||||||||
| 347 | SRX23311153 | SRP484717 | Illumina NovaSeq 6000 | SRS20187481 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025196 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_158 (21PG53-2) | SAMN39503646 | 17/02/2025 | ||||||||||
| 348 | SRX23311154 | SRP484717 | Illumina NovaSeq 6000 | SRS20187482 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025197 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_159 (21PG53-2) | SAMN39503645 | 17/02/2025 | ||||||||||
| 349 | SRX23311155 | SRP484717 | Illumina NovaSeq 6000 | SRS20187483 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025198 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_16 (21PG77-1) | SAMN39503644 | 17/02/2025 | ||||||||||
| 350 | SRX23311156 | SRP484717 | Illumina NovaSeq 6000 | SRS20187484 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025199 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_160 (21PG53-2) | SAMN39503643 | 17/02/2025 | ||||||||||
| 351 | SRX23311157 | SRP484717 | Illumina NovaSeq 6000 | SRS20187485 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025200 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_161 (21PG53-2) | SAMN39503642 | 17/02/2025 | ||||||||||
| 352 | SRX23311158 | SRP484717 | Illumina NovaSeq 6000 | SRS20187486 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025201 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_162 (21PG53-2) | SAMN39503641 | 17/02/2025 | ||||||||||
| 353 | SRX23311159 | SRP484717 | Illumina NovaSeq 6000 | SRS20187487 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025202 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_163 (21PG53-2) | SAMN39503640 | 17/02/2025 | ||||||||||
| 354 | SRX23311160 | SRP484717 | Illumina NovaSeq 6000 | SRS20187488 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025203 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_164 (21PG53-2) | SAMN39503639 | 17/02/2025 | ||||||||||
| 355 | SRX23311324 | SRP484717 | Illumina NovaSeq 6000 | SRS20187651 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025204 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_165 (21PG53-2) | SAMN39503638 | 17/02/2025 | ||||||||||
| 356 | SRX23311325 | SRP484717 | Illumina NovaSeq 6000 | SRS20187653 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025205 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_166 (21PG53-2) | SAMN39503637 | 17/02/2025 | ||||||||||
| 357 | SRX23311326 | SRP484717 | Illumina NovaSeq 6000 | SRS20187655 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025206 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_167 (21PG53-2) | SAMN39503636 | 17/02/2025 | ||||||||||
| 358 | SRX23311327 | SRP484717 | Illumina NovaSeq 6000 | SRS20187654 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025207 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_168 (21PG32-2) | SAMN39503635 | 17/02/2025 | ||||||||||
| 359 | SRX23311328 | SRP484717 | Illumina NovaSeq 6000 | SRS20187661 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025208 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_169 (21PG32-2) | SAMN39503634 | 17/02/2025 | ||||||||||
| 360 | SRX23311329 | SRP484717 | Illumina NovaSeq 6000 | SRS20187662 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025209 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_17 (21PG77-1) | SAMN39503633 | 17/02/2025 | ||||||||||
| 361 | SRX23311330 | SRP484717 | Illumina NovaSeq 6000 | SRS20187656 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025210 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_170 (21PG32-2) | SAMN39503632 | 17/02/2025 | ||||||||||
| 362 | SRX23311331 | SRP484717 | Illumina NovaSeq 6000 | SRS20187659 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025211 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_171 (21PG32-2) | SAMN39503631 | 17/02/2025 | ||||||||||
| 363 | SRX23311191 | SRP484717 | Illumina NovaSeq 6000 | SRS20187517 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025212 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_172 (21PG32-2) | SAMN39503630 | 17/02/2025 | ||||||||||
| 364 | SRX23311192 | SRP484717 | Illumina NovaSeq 6000 | SRS20187520 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025213 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_173 (21PG32-2) | SAMN39503629 | 17/02/2025 | ||||||||||
| 365 | SRX23311193 | SRP484717 | Illumina NovaSeq 6000 | SRS20187521 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025214 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_174 (21PG32-2) | SAMN39503628 | 17/02/2025 | ||||||||||
| 366 | SRX23311194 | SRP484717 | Illumina NovaSeq 6000 | SRS20187522 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025215 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_175 (21PG32-2) | SAMN39503627 | 17/02/2025 | ||||||||||
| 367 | SRX23311195 | SRP484717 | Illumina NovaSeq 6000 | SRS20187525 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025216 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_176 (21PG32-2) | SAMN39503626 | 17/02/2025 | ||||||||||
| 368 | SRX23311196 | SRP484717 | Illumina NovaSeq 6000 | SRS20187524 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025217 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_177 (21PG32-2) | SAMN39503625 | 17/02/2025 | ||||||||||
| 369 | SRX23311197 | SRP484717 | Illumina NovaSeq 6000 | SRS20187523 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025218 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_178 (21PG32-2) | SAMN39503624 | 17/02/2025 | ||||||||||
| 370 | SRX23311198 | SRP484717 | Illumina NovaSeq 6000 | SRS20187527 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025219 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_179 (21PG32-2) | SAMN39503623 | 17/02/2025 | ||||||||||
| 371 | SRX23310922 | SRP484717 | Illumina NovaSeq 6000 | SRS20187250 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025220 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_18 (21PG77-1) | SAMN39503622 | 17/02/2025 | ||||||||||
| 372 | SRX23310923 | SRP484717 | Illumina NovaSeq 6000 | SRS20187252 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025221 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_180 (21PG32-2) | SAMN39503621 | 17/02/2025 | ||||||||||
| 373 | SRX23310924 | SRP484717 | Illumina NovaSeq 6000 | SRS20187253 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025222 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_19 (21PG77-1) | SAMN39503620 | 17/02/2025 | ||||||||||
| 374 | SRX23310925 | SRP484717 | Illumina NovaSeq 6000 | SRS20187251 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025223 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_191 (21PG49-1) | SAMN39503619 | 17/02/2025 | ||||||||||
| 375 | SRX23310926 | SRP484717 | Illumina NovaSeq 6000 | SRS20187254 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025224 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_192 (21PG49-1) | SAMN39503618 | 17/02/2025 | ||||||||||
| 376 | SRX23310927 | SRP484717 | Illumina NovaSeq 6000 | SRS20187255 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025225 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_193 (21PG57-2) | SAMN39503617 | 17/02/2025 | ||||||||||
| 377 | SRX23310928 | SRP484717 | Illumina NovaSeq 6000 | SRS20187256 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025226 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_194 (21PG57-2) | SAMN39503616 | 17/02/2025 | ||||||||||
| 378 | SRX23310929 | SRP484717 | Illumina NovaSeq 6000 | SRS20187258 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025227 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_195 (21PG57-2) | SAMN39503615 | 17/02/2025 | ||||||||||
| 379 | SRX23311161 | SRP484717 | Illumina NovaSeq 6000 | SRS20187490 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025228 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_196 (21PG57-2) | SAMN39503614 | 17/02/2025 | ||||||||||
| 380 | SRX23311163 | SRP484717 | Illumina NovaSeq 6000 | SRS20187492 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025230 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_198 (21PG57-2) | SAMN39503612 | 17/02/2025 | ||||||||||
| 381 | SRX23311164 | SRP484717 | Illumina NovaSeq 6000 | SRS20187494 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025231 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_199 (21PG57-2) | SAMN39503611 | 17/02/2025 | ||||||||||
| 382 | SRX23311165 | SRP484717 | Illumina NovaSeq 6000 | SRS20187493 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025232 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_2 (21PG50-3) | SAMN39503610 | 17/02/2025 | ||||||||||
| 383 | SRX23311166 | SRP484717 | Illumina NovaSeq 6000 | SRS20187491 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025233 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_20 (21PG77-1) | SAMN39503609 | 17/02/2025 | ||||||||||
| 384 | SRX23311167 | SRP484717 | Illumina NovaSeq 6000 | SRS20187495 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025234 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_200 (21PG57-2) | SAMN39503608 | 17/02/2025 | ||||||||||
| 385 | SRX23311332 | SRP484717 | Illumina NovaSeq 6000 | SRS20187657 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025236 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_202 (21PG57-2) | SAMN39503606 | 17/02/2025 | ||||||||||
| 386 | SRX23311333 | SRP484717 | Illumina NovaSeq 6000 | SRS20187658 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025237 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_203 (21PG57-2) | SAMN39503605 | 17/02/2025 | ||||||||||
| 387 | SRX23311335 | SRP484717 | Illumina NovaSeq 6000 | SRS20187663 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025239 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_205 (21PG57-2) | SAMN39503603 | 17/02/2025 | ||||||||||
| 388 | SRX23311336 | SRP484717 | Illumina NovaSeq 6000 | SRS20187664 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025240 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_206 (21PG57-2) | SAMN39503602 | 17/02/2025 | ||||||||||
| 389 | SRX23311337 | SRP484717 | Illumina NovaSeq 6000 | SRS20187665 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025241 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_207 (21PG57-2) | SAMN39503601 | 17/02/2025 | ||||||||||
| 390 | SRX23311338 | SRP484717 | Illumina NovaSeq 6000 | SRS20187666 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025242 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_208 (21PG57-2) | SAMN39503600 | 17/02/2025 | ||||||||||
| 391 | SRX23311339 | SRP484717 | Illumina NovaSeq 6000 | SRS20187667 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025243 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_209 (21PG75-4) | SAMN39503599 | 17/02/2025 | ||||||||||
| 392 | SRX23311199 | SRP484717 | Illumina NovaSeq 6000 | SRS20187526 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025244 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_21 (21PG77-1) | SAMN39503598 | 17/02/2025 | ||||||||||
| 393 | SRX23311200 | SRP484717 | Illumina NovaSeq 6000 | SRS20187528 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025245 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_210 (21PG75-4) | SAMN39503597 | 17/02/2025 | ||||||||||
| 394 | SRX23311201 | SRP484717 | Illumina NovaSeq 6000 | SRS20187530 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025246 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_211 (21PG75-4) | SAMN39503596 | 17/02/2025 | ||||||||||
| 395 | SRX23311202 | SRP484717 | Illumina NovaSeq 6000 | SRS20187532 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025247 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_212 (21PG75-4) | SAMN39503595 | 17/02/2025 | ||||||||||
| 396 | SRX23311203 | SRP484717 | Illumina NovaSeq 6000 | SRS20187531 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025248 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_213 (21PG75-4) | SAMN39503594 | 17/02/2025 | ||||||||||
| 397 | SRX23311204 | SRP484717 | Illumina NovaSeq 6000 | SRS20187529 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025249 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_214 (21PG75-4) | SAMN39503593 | 17/02/2025 | ||||||||||
| 398 | SRX23311205 | SRP484717 | Illumina NovaSeq 6000 | SRS20187534 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025250 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_215 (21PG75-4) | SAMN39503592 | 17/02/2025 | ||||||||||
| 399 | SRX23311206 | SRP484717 | Illumina NovaSeq 6000 | SRS20187533 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025251 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_216 (21PG75-4) | SAMN39503591 | 17/02/2025 | ||||||||||
| 400 | SRX23311169 | SRP484717 | Illumina NovaSeq 6000 | SRS20187497 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025252 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_217 (21PG75-4) | SAMN39503590 | 17/02/2025 | ||||||||||
| 401 | SRX23311170 | SRP484717 | Illumina NovaSeq 6000 | SRS20187498 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025253 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_218 (21PG75-4) | SAMN39503589 | 17/02/2025 | ||||||||||
| 402 | SRX23311171 | SRP484717 | Illumina NovaSeq 6000 | SRS20187500 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025254 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_219 (21PG75-4) | SAMN39503588 | 17/02/2025 | ||||||||||
| 403 | SRX23311172 | SRP484717 | Illumina NovaSeq 6000 | SRS20187499 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025255 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_22 (21PG77-1) | SAMN39503587 | 17/02/2025 | ||||||||||
| 404 | SRX23311260 | SRP484717 | Illumina NovaSeq 6000 | SRS20187592 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025256 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_220 (21PG75-4) | SAMN39503586 | 17/02/2025 | ||||||||||
| 405 | SRX23311261 | SRP484717 | Illumina NovaSeq 6000 | SRS20187587 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025257 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_221 (21PG75-4) | SAMN39503585 | 17/02/2025 | ||||||||||
| 406 | SRX23311262 | SRP484717 | Illumina NovaSeq 6000 | SRS20187588 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025258 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_222 (21PG75-4) | SAMN39503584 | 17/02/2025 | ||||||||||
| 407 | SRX23311263 | SRP484717 | Illumina NovaSeq 6000 | SRS20187598 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025259 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_223 (21PG75-4) | SAMN39503583 | 17/02/2025 | ||||||||||
| 408 | SRX23311341 | SRP484717 | Illumina NovaSeq 6000 | SRS20187670 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025261 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_225 (21PG75-4) | SAMN39503581 | 17/02/2025 | ||||||||||
| 409 | SRX23311342 | SRP484717 | Illumina NovaSeq 6000 | SRS20187669 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025262 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_226 (21PG75-4) | SAMN39503580 | 17/02/2025 | ||||||||||
| 410 | SRX23311343 | SRP484717 | Illumina NovaSeq 6000 | SRS20187671 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025263 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_227 (21PG75-4) | SAMN39503579 | 17/02/2025 | ||||||||||
| 411 | SRX23311345 | SRP484717 | Illumina NovaSeq 6000 | SRS20187673 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025265 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_23 (21PG77-1) | SAMN39503577 | 17/02/2025 | ||||||||||
| 412 | SRX23311346 | SRP484717 | Illumina NovaSeq 6000 | SRS20187675 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025266 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_24 (21PG77-1) | SAMN39503576 | 17/02/2025 | ||||||||||
| 413 | SRX23311347 | SRP484717 | Illumina NovaSeq 6000 | SRS20187676 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025267 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_25 (21PG40-2) | SAMN39503575 | 17/02/2025 | ||||||||||
| 414 | SRX23311207 | SRP484717 | Illumina NovaSeq 6000 | SRS20187538 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025268 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_26 (21PG40-2) | SAMN39503574 | 17/02/2025 | ||||||||||
| 415 | SRX23311211 | SRP484717 | Illumina NovaSeq 6000 | SRS20187536 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025272 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_269 (21PG76-2) | SAMN39503570 | 17/02/2025 | ||||||||||
| 416 | SRX23311212 | SRP484717 | Illumina NovaSeq 6000 | SRS20187540 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025273 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_27 (21PG40-2) | SAMN39503569 | 17/02/2025 | ||||||||||
| 417 | SRX23311213 | SRP484717 | Illumina NovaSeq 6000 | SRS20187541 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025274 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_270 (21PG76-2) | SAMN39503568 | 17/02/2025 | ||||||||||
| 418 | SRX23311214 | SRP484717 | Illumina NovaSeq 6000 | SRS20187544 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025275 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_271 (21PG76-2) | SAMN39503567 | 17/02/2025 | ||||||||||
| 419 | SRX23310935 | SRP484717 | Illumina NovaSeq 6000 | SRS20187263 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025281 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_277 (21PG76-2) | SAMN39503561 | 17/02/2025 | ||||||||||
| 420 | SRX23311264 | SRP484717 | Illumina NovaSeq 6000 | SRS20187589 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025284 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_28 (21PG40-2) | SAMN39503558 | 17/02/2025 | ||||||||||
| 421 | SRX23311266 | SRP484717 | Illumina NovaSeq 6000 | SRS20187594 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025286 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_281 (21PG45-2) | SAMN39503556 | 17/02/2025 | ||||||||||
| 422 | SRX23311348 | SRP484717 | Illumina NovaSeq 6000 | SRS20187674 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025292 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_287 (21PG45-2) | SAMN39503550 | 17/02/2025 | ||||||||||
| 423 | SRX23311350 | SRP484717 | Illumina NovaSeq 6000 | SRS20187677 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025294 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_289 (21PG35-1) | SAMN39503548 | 17/02/2025 | ||||||||||
| 424 | SRX23311351 | SRP484717 | Illumina NovaSeq 6000 | SRS20187678 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025295 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_29 (21PG40-2) | SAMN39503547 | 17/02/2025 | ||||||||||
| 425 | SRX23311352 | SRP484717 | Illumina NovaSeq 6000 | SRS20187680 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025296 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_290 (21PG35-1) | SAMN39503546 | 17/02/2025 | ||||||||||
| 426 | SRX23311353 | SRP484717 | Illumina NovaSeq 6000 | SRS20187681 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025297 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_291 (21PG35-1) | SAMN39503545 | 17/02/2025 | ||||||||||
| 427 | SRX23311216 | SRP484717 | Illumina NovaSeq 6000 | SRS20187542 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025301 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_295 (21PG35-1) | SAMN39503541 | 17/02/2025 | ||||||||||
| 428 | SRX23311217 | SRP484717 | Illumina NovaSeq 6000 | SRS20187543 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025302 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_296 (21PG65-1) | SAMN39503540 | 17/02/2025 | ||||||||||
| 429 | SRX23311218 | SRP484717 | Illumina NovaSeq 6000 | SRS20187546 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025303 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_297 (21PG65-1) | SAMN39503539 | 17/02/2025 | ||||||||||
| 430 | SRX23311219 | SRP484717 | Illumina NovaSeq 6000 | SRS20187547 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025304 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_298 (21PG65-1) | SAMN39503538 | 17/02/2025 | ||||||||||
| 431 | SRX23311220 | SRP484717 | Illumina NovaSeq 6000 | SRS20187548 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025305 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_299 (21PG65-1) | SAMN39503537 | 17/02/2025 | ||||||||||
| 432 | SRX23311221 | SRP484717 | Illumina NovaSeq 6000 | SRS20187549 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025306 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_3 (21PG50-3) | SAMN39503536 | 17/02/2025 | ||||||||||
| 433 | SRX23311222 | SRP484717 | Illumina NovaSeq 6000 | SRS20187551 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025307 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_30 (21PG40-2) | SAMN39503535 | 17/02/2025 | ||||||||||
| 434 | SRX23310938 | SRP484717 | Illumina NovaSeq 6000 | SRS20187265 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025308 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_300 (21PG65-1) | SAMN39503534 | 17/02/2025 | ||||||||||
| 435 | SRX23310939 | SRP484717 | Illumina NovaSeq 6000 | SRS20187267 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025309 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_301 (21PG65-1) | SAMN39503533 | 17/02/2025 | ||||||||||
| 436 | SRX23310940 | SRP484717 | Illumina NovaSeq 6000 | SRS20187269 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025310 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_302 (21PG65-1) | SAMN39503532 | 17/02/2025 | ||||||||||
| 437 | SRX23310941 | SRP484717 | Illumina NovaSeq 6000 | SRS20187268 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025311 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_303 (21PG65-1) | SAMN39503531 | 17/02/2025 | ||||||||||
| 438 | SRX23310942 | SRP484717 | Illumina NovaSeq 6000 | SRS20187270 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025312 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_304 (21PG65-1) | SAMN39503530 | 17/02/2025 | ||||||||||
| 439 | SRX23310943 | SRP484717 | Illumina NovaSeq 6000 | SRS20187271 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025313 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_305 (21PG65-1) | SAMN39503529 | 17/02/2025 | ||||||||||
| 440 | SRX23310944 | SRP484717 | Illumina NovaSeq 6000 | SRS20187272 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025314 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_306 (21PG65-1) | SAMN39503528 | 17/02/2025 | ||||||||||
| 441 | SRX23310945 | SRP484717 | Illumina NovaSeq 6000 | SRS20187273 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025315 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_307 (21PG65-1) | SAMN39503527 | 17/02/2025 | ||||||||||
| 442 | SRX23311272 | SRP484717 | Illumina NovaSeq 6000 | SRS20187602 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025316 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_308 (21PG65-1) | SAMN39503526 | 17/02/2025 | ||||||||||
| 443 | SRX23311273 | SRP484717 | Illumina NovaSeq 6000 | SRS20187601 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025317 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_309 (21PG65-1) | SAMN39503525 | 17/02/2025 | ||||||||||
| 444 | SRX23311274 | SRP484717 | Illumina NovaSeq 6000 | SRS20187600 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025318 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_31 (21PG40-2) | SAMN39503524 | 17/02/2025 | ||||||||||
| 445 | SRX23311275 | SRP484717 | Illumina NovaSeq 6000 | SRS20187603 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025319 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_310 (21PG65-1) | SAMN39503523 | 17/02/2025 | ||||||||||
| 446 | SRX23311276 | SRP484717 | Illumina NovaSeq 6000 | SRS20187604 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025320 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_311 (21PG65-1) | SAMN39503522 | 17/02/2025 | ||||||||||
| 447 | SRX23311277 | SRP484717 | Illumina NovaSeq 6000 | SRS20187605 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025321 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_312 (21PG65-1) | SAMN39503521 | 17/02/2025 | ||||||||||
| 448 | SRX23311278 | SRP484717 | Illumina NovaSeq 6000 | SRS20187606 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025322 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_313 (21PG65-1) | SAMN39503520 | 17/02/2025 | ||||||||||
| 449 | SRX23311279 | SRP484717 | Illumina NovaSeq 6000 | SRS20187607 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025323 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_314 (21PG65-2) | SAMN39503519 | 17/02/2025 | ||||||||||
| 450 | SRX23311356 | SRP484717 | Illumina NovaSeq 6000 | SRS20187682 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025324 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_315 (21PG65-2) | SAMN39503518 | 17/02/2025 | ||||||||||
| 451 | SRX23311357 | SRP484717 | Illumina NovaSeq 6000 | SRS20187686 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025325 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_316 (21PG65-2) | SAMN39503517 | 17/02/2025 | ||||||||||
| 452 | SRX23311358 | SRP484717 | Illumina NovaSeq 6000 | SRS20187685 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025326 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_317 (21PG65-2) | SAMN39503516 | 17/02/2025 | ||||||||||
| 453 | SRX23311359 | SRP484717 | Illumina NovaSeq 6000 | SRS20187687 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025327 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_318 (21PG65-2) | SAMN39503515 | 17/02/2025 | ||||||||||
| 454 | SRX23311360 | SRP484717 | Illumina NovaSeq 6000 | SRS20187688 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025328 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_319 (21PG65-2) | SAMN39503514 | 17/02/2025 | ||||||||||
| 455 | SRX23311361 | SRP484717 | Illumina NovaSeq 6000 | SRS20187690 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025329 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_32 (21PG40-2) | SAMN39503513 | 17/02/2025 | ||||||||||
| 456 | SRX23311362 | SRP484717 | Illumina NovaSeq 6000 | SRS20187689 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025330 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_320 (21PG65-2) | SAMN39503512 | 17/02/2025 | ||||||||||
| 457 | SRX23311363 | SRP484717 | Illumina NovaSeq 6000 | SRS20187691 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025331 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_321 (21PG65-2) | SAMN39503511 | 17/02/2025 | ||||||||||
| 458 | SRX23311223 | SRP484717 | Illumina NovaSeq 6000 | SRS20187550 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025332 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_322 (21PG65-2) | SAMN39503510 | 17/02/2025 | ||||||||||
| 459 | SRX23311224 | SRP484717 | Illumina NovaSeq 6000 | SRS20187553 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025333 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_323 (20PG3-1) | SAMN39503509 | 17/02/2025 | ||||||||||
| 460 | SRX23310946 | SRP484717 | Illumina NovaSeq 6000 | SRS20187274 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025340 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_33 (21PG40-2) | SAMN39503502 | 17/02/2025 | ||||||||||
| 461 | SRX23310947 | SRP484717 | Illumina NovaSeq 6000 | SRS20187275 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025341 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_330 (20PG3-1) | SAMN39503501 | 17/02/2025 | ||||||||||
| 462 | SRX23310948 | SRP484717 | Illumina NovaSeq 6000 | SRS20187276 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025342 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_331 (20PG3-1) | SAMN39503500 | 17/02/2025 | ||||||||||
| 463 | SRX23310953 | SRP484717 | Illumina NovaSeq 6000 | SRS20187281 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025347 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_336 (20PG3-1) | SAMN39503495 | 17/02/2025 | ||||||||||
| 464 | SRX23311282 | SRP484717 | Illumina NovaSeq 6000 | SRS20187609 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025350 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_339 (20PG3-1) | SAMN39503492 | 17/02/2025 | ||||||||||
| 465 | SRX23311283 | SRP484717 | Illumina NovaSeq 6000 | SRS20187611 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025351 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_34 (21PG40-2) | SAMN39503491 | 17/02/2025 | ||||||||||
| 466 | SRX23311284 | SRP484717 | Illumina NovaSeq 6000 | SRS20187612 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025352 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_340 (20PG3-1) | SAMN39503490 | 17/02/2025 | ||||||||||
| 467 | SRX23311286 | SRP484717 | Illumina NovaSeq 6000 | SRS20187614 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025354 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_342 (20PG3-1) | SAMN39503488 | 17/02/2025 | ||||||||||
| 468 | SRX23311366 | SRP484717 | Illumina NovaSeq 6000 | SRS20187693 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025358 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_346 (20PG4-3) | SAMN39503484 | 17/02/2025 | ||||||||||
| 469 | SRX23311367 | SRP484717 | Illumina NovaSeq 6000 | SRS20187695 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025359 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_347 (20PG4-3) | SAMN39503483 | 17/02/2025 | ||||||||||
| 470 | SRX23311368 | SRP484717 | Illumina NovaSeq 6000 | SRS20187697 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025360 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_348 (20PG4-3) | SAMN39503482 | 17/02/2025 | ||||||||||
| 471 | SRX23311369 | SRP484717 | Illumina NovaSeq 6000 | SRS20187696 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025361 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_349 (20PG4-3) | SAMN39503481 | 17/02/2025 | ||||||||||
| 472 | SRX23311370 | SRP484717 | Illumina NovaSeq 6000 | SRS20187700 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025362 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_35 (21PG40-2) | SAMN39503480 | 17/02/2025 | ||||||||||
| 473 | SRX23311371 | SRP484717 | Illumina NovaSeq 6000 | SRS20187702 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025363 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_350 (20PG4-3) | SAMN39503479 | 17/02/2025 | ||||||||||
| 474 | SRX23311231 | SRP484717 | Illumina NovaSeq 6000 | SRS20187560 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025364 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_351 (20PG4-3) | SAMN39503478 | 17/02/2025 | ||||||||||
| 475 | SRX23311232 | SRP484717 | Illumina NovaSeq 6000 | SRS20187566 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025365 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_352 (20PG4-3) | SAMN39503477 | 17/02/2025 | ||||||||||
| 476 | SRX23311233 | SRP484717 | Illumina NovaSeq 6000 | SRS20187559 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025366 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_353 (20PG4-3) | SAMN39503476 | 17/02/2025 | ||||||||||
| 477 | SRX23311234 | SRP484717 | Illumina NovaSeq 6000 | SRS20187561 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025367 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_354 (20PG4-3) | SAMN39503475 | 17/02/2025 | ||||||||||
| 478 | SRX23311235 | SRP484717 | Illumina NovaSeq 6000 | SRS20187562 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025368 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_355 (20PG4-3) | SAMN39503474 | 17/02/2025 | ||||||||||
| 479 | SRX23311236 | SRP484717 | Illumina NovaSeq 6000 | SRS20187567 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025369 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_356 (20PG4-3) | SAMN39503473 | 17/02/2025 | ||||||||||
| 480 | SRX23311237 | SRP484717 | Illumina NovaSeq 6000 | SRS20187563 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025370 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_357 (20PG4-3) | SAMN39503472 | 17/02/2025 | ||||||||||
| 481 | SRX23311238 | SRP484717 | Illumina NovaSeq 6000 | SRS20187564 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025371 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_358 (20PG4-3) | SAMN39503471 | 17/02/2025 | ||||||||||
| 482 | SRX23310954 | SRP484717 | Illumina NovaSeq 6000 | SRS20187282 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025372 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_359 (21PG33-2) | SAMN39503470 | 17/02/2025 | ||||||||||
| 483 | SRX23310955 | SRP484717 | Illumina NovaSeq 6000 | SRS20187285 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025373 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_36 (21PG40-2) | SAMN39503469 | 17/02/2025 | ||||||||||
| 484 | SRX23310956 | SRP484717 | Illumina NovaSeq 6000 | SRS20187283 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025374 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_360 (21PG33-2) | SAMN39503468 | 17/02/2025 | ||||||||||
| 485 | SRX23310957 | SRP484717 | Illumina NovaSeq 6000 | SRS20187284 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025375 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_361 (21PG33-2) | SAMN39503467 | 17/02/2025 | ||||||||||
| 486 | SRX23310958 | SRP484717 | Illumina NovaSeq 6000 | SRS20187286 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025376 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_362 (21PG33-2) | SAMN39503466 | 17/02/2025 | ||||||||||
| 487 | SRX23310959 | SRP484717 | Illumina NovaSeq 6000 | SRS20187288 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025377 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_363 (21PG33-2) | SAMN39503465 | 17/02/2025 | ||||||||||
| 488 | SRX23310960 | SRP484717 | Illumina NovaSeq 6000 | SRS20187287 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025378 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_364 (21PG33-2) | SAMN39503464 | 17/02/2025 | ||||||||||
| 489 | SRX23310961 | SRP484717 | Illumina NovaSeq 6000 | SRS20187289 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025379 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_365 (21PG33-2) | SAMN39503463 | 17/02/2025 | ||||||||||
| 490 | SRX23311288 | SRP484717 | Illumina NovaSeq 6000 | SRS20187615 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025380 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_366 (21PG33-2) | SAMN39503462 | 17/02/2025 | ||||||||||
| 491 | SRX23311291 | SRP484717 | Illumina NovaSeq 6000 | SRS20187619 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025383 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_369 (21PG33-2) | SAMN39503459 | 17/02/2025 | ||||||||||
| 492 | SRX23311292 | SRP484717 | Illumina NovaSeq 6000 | SRS20187620 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025384 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_37 (21PG40-2) | SAMN39503458 | 17/02/2025 | ||||||||||
| 493 | SRX23311293 | SRP484717 | Illumina NovaSeq 6000 | SRS20187621 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025385 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_370 (21PG33-2) | SAMN39503457 | 17/02/2025 | ||||||||||
| 494 | SRX23311294 | SRP484717 | Illumina NovaSeq 6000 | SRS20187626 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025386 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_371 (21PG33-2) | SAMN39503456 | 17/02/2025 | ||||||||||
| 495 | SRX23311295 | SRP484717 | Illumina NovaSeq 6000 | SRS20187623 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025387 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_372 (21PG33-2) | SAMN39503455 | 17/02/2025 | ||||||||||
| 496 | SRX23311373 | SRP484717 | Illumina NovaSeq 6000 | SRS20187699 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025389 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_39 (21PG40-2) | SAMN39503453 | 17/02/2025 | ||||||||||
| 497 | SRX23311374 | SRP484717 | Illumina NovaSeq 6000 | SRS20187701 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025390 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_4 (21PG50-3) | SAMN39503452 | 17/02/2025 | ||||||||||
| 498 | SRX23311376 | SRP484717 | Illumina NovaSeq 6000 | SRS20187704 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025392 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_41 (21PG33-1) | SAMN39503450 | 17/02/2025 | ||||||||||
| 499 | SRX23311377 | SRP484717 | Illumina NovaSeq 6000 | SRS20187705 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025393 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_42 (21PG33-1) | SAMN39503449 | 17/02/2025 | ||||||||||
| 500 | SRX23311378 | SRP484717 | Illumina NovaSeq 6000 | SRS20187706 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025394 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_43 (21PG33-1) | SAMN39503448 | 17/02/2025 | ||||||||||
| 501 | SRX23311379 | SRP484717 | Illumina NovaSeq 6000 | SRS20187709 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025395 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_44 (21PG33-1) | SAMN39503447 | 17/02/2025 | ||||||||||
| 502 | SRX23311239 | SRP484717 | Illumina NovaSeq 6000 | SRS20187573 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025396 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_45 (21PG33-1) | SAMN39503446 | 17/02/2025 | ||||||||||
| 503 | SRX23311241 | SRP484717 | Illumina NovaSeq 6000 | SRS20187568 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025398 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_47 (21PG33-1) | SAMN39503444 | 17/02/2025 | ||||||||||
| 504 | SRX23311242 | SRP484717 | Illumina NovaSeq 6000 | SRS20187569 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025399 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_48 (21PG33-1) | SAMN39503443 | 17/02/2025 | ||||||||||
| 505 | SRX23311243 | SRP484717 | Illumina NovaSeq 6000 | SRS20187571 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025400 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_49 (21PG33-1) | SAMN39503442 | 17/02/2025 | ||||||||||
| 506 | SRX23311244 | SRP484717 | Illumina NovaSeq 6000 | SRS20187570 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025401 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_5 (21PG50-3) | SAMN39503441 | 17/02/2025 | ||||||||||
| 507 | SRX23311245 | SRP484717 | Illumina NovaSeq 6000 | SRS20187572 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025402 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_50 (21PG33-1) | SAMN39503440 | 17/02/2025 | ||||||||||
| 508 | SRX23311246 | SRP484717 | Illumina NovaSeq 6000 | SRS20187574 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025403 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_51 (21PG33-1) | SAMN39503439 | 17/02/2025 | ||||||||||
| 509 | SRX23310962 | SRP484717 | Illumina NovaSeq 6000 | SRS20187291 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025404 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_52 (21PG33-1) | SAMN39503438 | 17/02/2025 | ||||||||||
| 510 | SRX23310963 | SRP484717 | Illumina NovaSeq 6000 | SRS20187290 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025405 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_53 (21PG33-1) | SAMN39503437 | 17/02/2025 | ||||||||||
| 511 | SRX23310964 | SRP484717 | Illumina NovaSeq 6000 | SRS20187293 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025406 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_54 (21PG33-1) | SAMN39503436 | 17/02/2025 | ||||||||||
| 512 | SRX23310965 | SRP484717 | Illumina NovaSeq 6000 | SRS20187292 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025407 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_55 (21PG33-1) | SAMN39503435 | 17/02/2025 | ||||||||||
| 513 | SRX23310966 | SRP484717 | Illumina NovaSeq 6000 | SRS20187294 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025408 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_56 (21PG33-1) | SAMN39503434 | 17/02/2025 | ||||||||||
| 514 | SRX23310967 | SRP484717 | Illumina NovaSeq 6000 | SRS20187295 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025409 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_57 (21PG33-1) | SAMN39503433 | 17/02/2025 | ||||||||||
| 515 | SRX23310968 | SRP484717 | Illumina NovaSeq 6000 | SRS20187296 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025410 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_58 (21PG33-1) | SAMN39503432 | 17/02/2025 | ||||||||||
| 516 | SRX23311296 | SRP484717 | Illumina NovaSeq 6000 | SRS20187622 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025412 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_6 (21PG50-3) | SAMN39503430 | 17/02/2025 | ||||||||||
| 517 | SRX23311297 | SRP484717 | Illumina NovaSeq 6000 | SRS20187624 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025413 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_60 (21PG33-1) | SAMN39503429 | 17/02/2025 | ||||||||||
| 518 | SRX23311298 | SRP484717 | Illumina NovaSeq 6000 | SRS20187627 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025414 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_61 (21PG33-1) | SAMN39503428 | 17/02/2025 | ||||||||||
| 519 | SRX23311299 | SRP484717 | Illumina NovaSeq 6000 | SRS20187625 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025415 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_62 (21PG33-1) | SAMN39503427 | 17/02/2025 | ||||||||||
| 520 | SRX23311383 | SRP484717 | Illumina NovaSeq 6000 | SRS20187711 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025423 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_7 (21PG50-3) | SAMN39503419 | 17/02/2025 | ||||||||||
| 521 | SRX23311253 | SRP484717 | Illumina NovaSeq 6000 | SRS20187581 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025434 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_8 (21PG77-1) | SAMN39503408 | 17/02/2025 | ||||||||||
| 522 | SRX23311254 | SRP484717 | Illumina NovaSeq 6000 | SRS20187582 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025435 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_80 (21PG42-2) | SAMN39503407 | 17/02/2025 | ||||||||||
| 523 | SRX23310971 | SRP484717 | Illumina NovaSeq 6000 | SRS20187299 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025437 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_82 (21PG55-1) | SAMN39503405 | 17/02/2025 | ||||||||||
| 524 | SRX23310972 | SRP484717 | Illumina NovaSeq 6000 | SRS20187300 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025438 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_83 (21PG55-1) | SAMN39503404 | 17/02/2025 | ||||||||||
| 525 | SRX23310973 | SRP484717 | Illumina NovaSeq 6000 | SRS20187301 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025439 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_84 (21PG55-1) | SAMN39503403 | 17/02/2025 | ||||||||||
| 526 | SRX23310974 | SRP484717 | Illumina NovaSeq 6000 | SRS20187302 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025440 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_85 (21PG55-1) | SAMN39503402 | 17/02/2025 | ||||||||||
| 527 | SRX23310975 | SRP484717 | Illumina NovaSeq 6000 | SRS20187305 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025441 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_86 (21PG55-1) | SAMN39503401 | 17/02/2025 | ||||||||||
| 528 | SRX23310976 | SRP484717 | Illumina NovaSeq 6000 | SRS20187304 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025442 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_87 (21PG55-1) | SAMN39503400 | 17/02/2025 | ||||||||||
| 529 | SRX23310977 | SRP484717 | Illumina NovaSeq 6000 | SRS20187303 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025443 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_88 (21PG55-1) | SAMN39503399 | 17/02/2025 | ||||||||||
| 530 | SRX23311304 | SRP484717 | Illumina NovaSeq 6000 | SRS20187631 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025444 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_89 (21PG55-1) | SAMN39503398 | 17/02/2025 | ||||||||||
| 531 | SRX23311305 | SRP484717 | Illumina NovaSeq 6000 | SRS20187634 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025445 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_9 (21PG77-1) | SAMN39503397 | 17/02/2025 | ||||||||||
| 532 | SRX23311306 | SRP484717 | Illumina NovaSeq 6000 | SRS20187632 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025446 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_90 (21PG55-1) | SAMN39503396 | 17/02/2025 | ||||||||||
| 533 | SRX23311307 | SRP484717 | Illumina NovaSeq 6000 | SRS20187637 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025447 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_91 (21PG55-1) | SAMN39503395 | 17/02/2025 | ||||||||||
| 534 | SRX23311309 | SRP484717 | Illumina NovaSeq 6000 | SRS20187636 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025449 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_93 (21PG55-1) | SAMN39503393 | 17/02/2025 | ||||||||||
| 535 | SRX23311310 | SRP484717 | Illumina NovaSeq 6000 | SRS20187638 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025450 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_94 (21PG55-1) | SAMN39503392 | 17/02/2025 | ||||||||||
| 536 | SRX23311311 | SRP484717 | Illumina NovaSeq 6000 | SRS20187639 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025451 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_95 (21PG55-1) | SAMN39503391 | 17/02/2025 | ||||||||||
| 537 | SRX23311388 | SRP484717 | Illumina NovaSeq 6000 | SRS20187716 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025452 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_96 (21PG55-1) | SAMN39503390 | 17/02/2025 | ||||||||||
| 538 | SRX23311389 | SRP484717 | Illumina NovaSeq 6000 | SRS20187718 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025453 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_97 (21PG55-3) | SAMN39503389 | 17/02/2025 | ||||||||||
| 539 | SRX23311390 | SRP484717 | Illumina NovaSeq 6000 | SRS20187720 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025454 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_98 (21PG55-3) | SAMN39503388 | 17/02/2025 | ||||||||||
| 540 | SRX23311391 | SRP484717 | Illumina NovaSeq 6000 | SRS20187717 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025455 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_99 (21PG55-3) | SAMN39503387 | 17/02/2025 |
condition¶
In [ ]:
# ex. control, diet, light, reproductive capacity, time post mortem, time post feeding,
# exercise details, menstruation, personality, litter size
#library.loc[library["condition"] == "old", "condition"] = "new"
# view
display_df(library)
annotator id, last modification date¶
In [ ]:
library.loc[:,'annotatorId'] = 'SAC'
library.loc[:,'lastModificationDate'] = '2025-02-20'
# view
display_df(library)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRX23310999 | SRP484717 | Illumina NovaSeq 6000 | SRS20187327 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024795 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_1 (21PG50-2) | SAMN39504047 | SAC | 2025-02-20 | ||||||
| 1 | SRX23311255 | SRP484717 | Illumina NovaSeq 6000 | SRS20187583 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024796 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_10 (21PG39-1) | SAMN39504046 | SAC | 2025-02-20 | ||||||
| 2 | SRX23311256 | SRP484717 | Illumina NovaSeq 6000 | SRS20187584 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024797 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_100 (21PG55-2) | SAMN39504045 | SAC | 2025-02-20 | ||||||
| 3 | SRX23311257 | SRP484717 | Illumina NovaSeq 6000 | SRS20187585 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024798 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_101 (21PG55-2) | SAMN39504044 | SAC | 2025-02-20 | ||||||
| 4 | SRX23311258 | SRP484717 | Illumina NovaSeq 6000 | SRS20187586 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024799 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_102 (21PG55-2) | SAMN39504043 | SAC | 2025-02-20 | ||||||
| 5 | SRX23311259 | SRP484717 | Illumina NovaSeq 6000 | SRS20187590 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024800 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_103 (21PG55-2) | SAMN39504042 | SAC | 2025-02-20 | ||||||
| 6 | SRX23310825 | SRP484717 | Illumina NovaSeq 6000 | SRS20187153 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024801 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_104 (21PG55-2) | SAMN39504041 | SAC | 2025-02-20 | ||||||
| 7 | SRX23310826 | SRP484717 | Illumina NovaSeq 6000 | SRS20187154 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024802 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_105 (21PG55-2) | SAMN39504040 | SAC | 2025-02-20 | ||||||
| 8 | SRX23310827 | SRP484717 | Illumina NovaSeq 6000 | SRS20187157 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024803 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_106 (21PG55-2) | SAMN39504039 | SAC | 2025-02-20 | ||||||
| 9 | SRX23311000 | SRP484717 | Illumina NovaSeq 6000 | SRS20187330 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024804 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_107 (21PG55-2) | SAMN39504038 | SAC | 2025-02-20 | ||||||
| 10 | SRX23311001 | SRP484717 | Illumina NovaSeq 6000 | SRS20187329 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024805 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_108 (21PG55-2) | SAMN39504037 | SAC | 2025-02-20 | ||||||
| 11 | SRX23311002 | SRP484717 | Illumina NovaSeq 6000 | SRS20187328 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024806 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_109 (21PG34-1) | SAMN39504036 | SAC | 2025-02-20 | ||||||
| 12 | SRX23311003 | SRP484717 | Illumina NovaSeq 6000 | SRS20187331 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024807 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_11 (21PG39-1) | SAMN39504035 | SAC | 2025-02-20 | ||||||
| 13 | SRX23311004 | SRP484717 | Illumina NovaSeq 6000 | SRS20187333 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024808 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_110 (21PG34-1) | SAMN39504034 | SAC | 2025-02-20 | ||||||
| 14 | SRX23311006 | SRP484717 | Illumina NovaSeq 6000 | SRS20187334 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024810 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_112 (21PG34-1) | SAMN39504032 | SAC | 2025-02-20 | ||||||
| 15 | SRX23311007 | SRP484717 | Illumina NovaSeq 6000 | SRS20187335 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024811 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_113 (21PG37-2) | SAMN39504031 | SAC | 2025-02-20 | ||||||
| 16 | SRX23311392 | SRP484717 | Illumina NovaSeq 6000 | SRS20187719 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024812 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_114 (21PG37-2) | SAMN39504030 | SAC | 2025-02-20 | ||||||
| 17 | SRX23311393 | SRP484717 | Illumina NovaSeq 6000 | SRS20187721 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024813 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_115 (21PG37-2) | SAMN39504029 | SAC | 2025-02-20 | ||||||
| 18 | SRX23311394 | SRP484717 | Illumina NovaSeq 6000 | SRS20187722 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024814 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_116 (21PG37-2) | SAMN39504028 | SAC | 2025-02-20 | ||||||
| 19 | SRX23311395 | SRP484717 | Illumina NovaSeq 6000 | SRS20187724 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024815 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_117 (21PG37-2) | SAMN39504027 | SAC | 2025-02-20 | ||||||
| 20 | SRX23311397 | SRP484717 | Illumina NovaSeq 6000 | SRS20187725 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024817 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_119 (21PG37-2) | SAMN39504025 | SAC | 2025-02-20 | ||||||
| 21 | SRX23311398 | SRP484717 | Illumina NovaSeq 6000 | SRS20187726 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024818 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_12 (21PG39-1) | SAMN39504024 | SAC | 2025-02-20 | ||||||
| 22 | SRX23311399 | SRP484717 | Illumina NovaSeq 6000 | SRS20187727 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024819 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_120 (21PG37-2) | SAMN39504023 | SAC | 2025-02-20 | ||||||
| 23 | SRX23310828 | SRP484717 | Illumina NovaSeq 6000 | SRS20187156 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024820 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_121 (21PG37-2) | SAMN39504022 | SAC | 2025-02-20 | ||||||
| 24 | SRX23310829 | SRP484717 | Illumina NovaSeq 6000 | SRS20187158 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024821 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_122 (21PG37-2) | SAMN39504021 | SAC | 2025-02-20 | ||||||
| 25 | SRX23310831 | SRP484717 | Illumina NovaSeq 6000 | SRS20187159 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024823 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_124 (21PG37-3) | SAMN39504019 | SAC | 2025-02-20 | ||||||
| 26 | SRX23310832 | SRP484717 | Illumina NovaSeq 6000 | SRS20187160 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024824 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_125 (21PG37-3) | SAMN39504018 | SAC | 2025-02-20 | ||||||
| 27 | SRX23310833 | SRP484717 | Illumina NovaSeq 6000 | SRS20187161 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024825 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_126 (21PG37-3) | SAMN39504017 | SAC | 2025-02-20 | ||||||
| 28 | SRX23310834 | SRP484717 | Illumina NovaSeq 6000 | SRS20187163 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024826 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_127 (21PG37-3) | SAMN39504016 | SAC | 2025-02-20 | ||||||
| 29 | SRX23310835 | SRP484717 | Illumina NovaSeq 6000 | SRS20187162 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024827 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_128 (21PG37-3) | SAMN39504015 | SAC | 2025-02-20 | ||||||
| 30 | SRX23311008 | SRP484717 | Illumina NovaSeq 6000 | SRS20187336 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024828 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_129 (21PG37-3) | SAMN39504014 | SAC | 2025-02-20 | ||||||
| 31 | SRX23311009 | SRP484717 | Illumina NovaSeq 6000 | SRS20187337 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024829 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_13 (21PG39-1) | SAMN39504013 | SAC | 2025-02-20 | ||||||
| 32 | SRX23311010 | SRP484717 | Illumina NovaSeq 6000 | SRS20187338 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024830 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_130 (21PG37-3) | SAMN39504012 | SAC | 2025-02-20 | ||||||
| 33 | SRX23311011 | SRP484717 | Illumina NovaSeq 6000 | SRS20187339 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024831 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_131 (21PG37-3) | SAMN39504011 | SAC | 2025-02-20 | ||||||
| 34 | SRX23311012 | SRP484717 | Illumina NovaSeq 6000 | SRS20187340 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024832 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_132 (21PG37-3) | SAMN39504010 | SAC | 2025-02-20 | ||||||
| 35 | SRX23311013 | SRP484717 | Illumina NovaSeq 6000 | SRS20187341 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024833 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_133 (21PG37-3) | SAMN39504009 | SAC | 2025-02-20 | ||||||
| 36 | SRX23311014 | SRP484717 | Illumina NovaSeq 6000 | SRS20187342 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024834 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_134 (21PG37-3) | SAMN39504008 | SAC | 2025-02-20 | ||||||
| 37 | SRX23311015 | SRP484717 | Illumina NovaSeq 6000 | SRS20187343 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024835 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_135 (21PG37-3) | SAMN39504007 | SAC | 2025-02-20 | ||||||
| 38 | SRX23311400 | SRP484717 | Illumina NovaSeq 6000 | SRS20187728 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024836 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_136 (21PG37-3) | SAMN39504006 | SAC | 2025-02-20 | ||||||
| 39 | SRX23311402 | SRP484717 | Illumina NovaSeq 6000 | SRS20187730 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024838 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_138 (21PG37-3) | SAMN39504004 | SAC | 2025-02-20 | ||||||
| 40 | SRX23311404 | SRP484717 | Illumina NovaSeq 6000 | SRS20187731 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024840 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_14 (21PG39-1) | SAMN39504002 | SAC | 2025-02-20 | ||||||
| 41 | SRX23311405 | SRP484717 | Illumina NovaSeq 6000 | SRS20187733 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024841 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_140 (21PG37-3) | SAMN39504001 | SAC | 2025-02-20 | ||||||
| 42 | SRX23311406 | SRP484717 | Illumina NovaSeq 6000 | SRS20187732 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024842 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_141 (21PG37-3) | SAMN39504000 | SAC | 2025-02-20 | ||||||
| 43 | SRX23310985 | SRP484717 | Illumina NovaSeq 6000 | SRS20187311 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024851 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_15 (21PG39-1) | SAMN39503991 | SAC | 2025-02-20 | ||||||
| 44 | SRX23310837 | SRP484717 | Illumina NovaSeq 6000 | SRS20187165 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024853 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_151 (21PG55-2) | SAMN39503989 | SAC | 2025-02-20 | ||||||
| 45 | SRX23310840 | SRP484717 | Illumina NovaSeq 6000 | SRS20187168 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024856 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_154 (21PG53-1) | SAMN39503986 | SAC | 2025-02-20 | ||||||
| 46 | SRX23310842 | SRP484717 | Illumina NovaSeq 6000 | SRS20187170 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024858 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_156 (21PG55-2) | SAMN39503984 | SAC | 2025-02-20 | ||||||
| 47 | SRX23310843 | SRP484717 | Illumina NovaSeq 6000 | SRS20187171 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024859 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_157 (21PG53-1) | SAMN39503983 | SAC | 2025-02-20 | ||||||
| 48 | SRX23311016 | SRP484717 | Illumina NovaSeq 6000 | SRS20187344 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024860 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_158 (21PG53-1) | SAMN39503982 | SAC | 2025-02-20 | ||||||
| 49 | SRX23311017 | SRP484717 | Illumina NovaSeq 6000 | SRS20187345 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024861 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_159 (21PG53-1) | SAMN39503981 | SAC | 2025-02-20 | ||||||
| 50 | SRX23311018 | SRP484717 | Illumina NovaSeq 6000 | SRS20187346 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024862 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_16 (21PG39-1) | SAMN39503980 | SAC | 2025-02-20 | ||||||
| 51 | SRX23311019 | SRP484717 | Illumina NovaSeq 6000 | SRS20187347 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024863 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_160 (21PG53-1) | SAMN39503979 | SAC | 2025-02-20 | ||||||
| 52 | SRX23311020 | SRP484717 | Illumina NovaSeq 6000 | SRS20187348 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024864 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_161 (21PG53-1) | SAMN39503978 | SAC | 2025-02-20 | ||||||
| 53 | SRX23311021 | SRP484717 | Illumina NovaSeq 6000 | SRS20187350 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024865 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_162 (21PG53-1) | SAMN39503977 | SAC | 2025-02-20 | ||||||
| 54 | SRX23311022 | SRP484717 | Illumina NovaSeq 6000 | SRS20187352 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024866 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_163 (21PG53-1) | SAMN39503976 | SAC | 2025-02-20 | ||||||
| 55 | SRX23311023 | SRP484717 | Illumina NovaSeq 6000 | SRS20187351 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024867 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_164 (21PG53-1) | SAMN39503975 | SAC | 2025-02-20 | ||||||
| 56 | SRX23311408 | SRP484717 | Illumina NovaSeq 6000 | SRS20187736 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024868 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_165 (21PG53-1) | SAMN39503974 | SAC | 2025-02-20 | ||||||
| 57 | SRX23311409 | SRP484717 | Illumina NovaSeq 6000 | SRS20187738 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024869 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_166 (21PG53-1) | SAMN39503973 | SAC | 2025-02-20 | ||||||
| 58 | SRX23311410 | SRP484717 | Illumina NovaSeq 6000 | SRS20187737 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024870 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_167 (21PG53-1) | SAMN39503972 | SAC | 2025-02-20 | ||||||
| 59 | SRX23311411 | SRP484717 | Illumina NovaSeq 6000 | SRS20187741 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024871 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_168 (21PG53-1) | SAMN39503971 | SAC | 2025-02-20 | ||||||
| 60 | SRX23311412 | SRP484717 | Illumina NovaSeq 6000 | SRS20187742 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024872 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_169 (21PG53-1) | SAMN39503970 | SAC | 2025-02-20 | ||||||
| 61 | SRX23311413 | SRP484717 | Illumina NovaSeq 6000 | SRS20187740 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024873 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_17 (21PG39-2) | SAMN39503969 | SAC | 2025-02-20 | ||||||
| 62 | SRX23311414 | SRP484717 | Illumina NovaSeq 6000 | SRS20187739 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024874 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_170 (21PG53-1) | SAMN39503968 | SAC | 2025-02-20 | ||||||
| 63 | SRX23310987 | SRP484717 | Illumina NovaSeq 6000 | SRS20187315 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024877 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_173 (21PG77-2) | SAMN39503965 | SAC | 2025-02-20 | ||||||
| 64 | SRX23310988 | SRP484717 | Illumina NovaSeq 6000 | SRS20187316 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024878 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_174 (21PG77-2) | SAMN39503964 | SAC | 2025-02-20 | ||||||
| 65 | SRX23310990 | SRP484717 | Illumina NovaSeq 6000 | SRS20187318 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024880 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_176 (21PG77-2) | SAMN39503962 | SAC | 2025-02-20 | ||||||
| 66 | SRX23310991 | SRP484717 | Illumina NovaSeq 6000 | SRS20187319 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024881 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_177 (21PG77-2) | SAMN39503961 | SAC | 2025-02-20 | ||||||
| 67 | SRX23310992 | SRP484717 | Illumina NovaSeq 6000 | SRS20187321 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024882 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_178 (21PG77-2) | SAMN39503960 | SAC | 2025-02-20 | ||||||
| 68 | SRX23310993 | SRP484717 | Illumina NovaSeq 6000 | SRS20187320 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024883 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_179 (21PG77-2) | SAMN39503959 | SAC | 2025-02-20 | ||||||
| 69 | SRX23310844 | SRP484717 | Illumina NovaSeq 6000 | SRS20187173 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024884 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_18 (21PG40-1) | SAMN39503958 | SAC | 2025-02-20 | ||||||
| 70 | SRX23310845 | SRP484717 | Illumina NovaSeq 6000 | SRS20187172 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024885 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_180 (21PG77-2) | SAMN39503957 | SAC | 2025-02-20 | ||||||
| 71 | SRX23310846 | SRP484717 | Illumina NovaSeq 6000 | SRS20187175 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024886 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_181 (21PG77-2) | SAMN39503956 | SAC | 2025-02-20 | ||||||
| 72 | SRX23310847 | SRP484717 | Illumina NovaSeq 6000 | SRS20187174 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024887 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_182 (21PG77-2) | SAMN39503955 | SAC | 2025-02-20 | ||||||
| 73 | SRX23310848 | SRP484717 | Illumina NovaSeq 6000 | SRS20187176 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024888 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_183 (21PG77-2) | SAMN39503954 | SAC | 2025-02-20 | ||||||
| 74 | SRX23310849 | SRP484717 | Illumina NovaSeq 6000 | SRS20187178 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024889 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_184 (21PG77-2) | SAMN39503953 | SAC | 2025-02-20 | ||||||
| 75 | SRX23310850 | SRP484717 | Illumina NovaSeq 6000 | SRS20187177 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024890 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_185 (21PG77-2) | SAMN39503952 | SAC | 2025-02-20 | ||||||
| 76 | SRX23310851 | SRP484717 | Illumina NovaSeq 6000 | SRS20187179 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024891 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_186 (21PG50-1) | SAMN39503951 | SAC | 2025-02-20 | ||||||
| 77 | SRX23311024 | SRP484717 | Illumina NovaSeq 6000 | SRS20187349 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024892 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_187 (21PG50-1) | SAMN39503950 | SAC | 2025-02-20 | ||||||
| 78 | SRX23311025 | SRP484717 | Illumina NovaSeq 6000 | SRS20187354 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024893 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_188 (21PG50-1) | SAMN39503949 | SAC | 2025-02-20 | ||||||
| 79 | SRX23311027 | SRP484717 | Illumina NovaSeq 6000 | SRS20187353 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024895 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_19 (21PG40-1) | SAMN39503947 | SAC | 2025-02-20 | ||||||
| 80 | SRX23311029 | SRP484717 | Illumina NovaSeq 6000 | SRS20187356 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024897 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_191 (21PG50-1) | SAMN39503945 | SAC | 2025-02-20 | ||||||
| 81 | SRX23311030 | SRP484717 | Illumina NovaSeq 6000 | SRS20187359 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024898 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_192 (21PG50-1) | SAMN39503944 | SAC | 2025-02-20 | ||||||
| 82 | SRX23311031 | SRP484717 | Illumina NovaSeq 6000 | SRS20187360 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024899 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_193 (21PG57-1) | SAMN39503943 | SAC | 2025-02-20 | ||||||
| 83 | SRX23311417 | SRP484717 | Illumina NovaSeq 6000 | SRS20187747 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024901 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_195 (21PG57-1) | SAMN39503941 | SAC | 2025-02-20 | ||||||
| 84 | SRX23311418 | SRP484717 | Illumina NovaSeq 6000 | SRS20187745 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024902 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_196 (21PG57-1) | SAMN39503940 | SAC | 2025-02-20 | ||||||
| 85 | SRX23311419 | SRP484717 | Illumina NovaSeq 6000 | SRS20187746 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024903 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_198 (21PG57-1) | SAMN39503939 | SAC | 2025-02-20 | ||||||
| 86 | SRX23311420 | SRP484717 | Illumina NovaSeq 6000 | SRS20187749 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024904 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_2 (21PG50-2) | SAMN39503938 | SAC | 2025-02-20 | ||||||
| 87 | SRX23311421 | SRP484717 | Illumina NovaSeq 6000 | SRS20187748 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024905 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_20 (21PG40-1) | SAMN39503937 | SAC | 2025-02-20 | ||||||
| 88 | SRX23311422 | SRP484717 | Illumina NovaSeq 6000 | SRS20187750 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024906 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_200 (21PG57-1) | SAMN39503936 | SAC | 2025-02-20 | ||||||
| 89 | SRX23311423 | SRP484717 | Illumina NovaSeq 6000 | SRS20187753 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024907 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_201 (21PG57-1) | SAMN39503935 | SAC | 2025-02-20 | ||||||
| 90 | SRX23310994 | SRP484717 | Illumina NovaSeq 6000 | SRS20187322 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024908 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_202 (21PG57-1) | SAMN39503934 | SAC | 2025-02-20 | ||||||
| 91 | SRX23310995 | SRP484717 | Illumina NovaSeq 6000 | SRS20187323 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024909 | Late blastocyst: E5.5 | ICM: PE | Late blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_206 (21PG57-1) | SAMN39503933 | SAC | 2025-02-20 | ||||||
| 92 | SRX23310996 | SRP484717 | Illumina NovaSeq 6000 | SRS20187324 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024910 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_209 (21PG57-1) | SAMN39503932 | SAC | 2025-02-20 | ||||||
| 93 | SRX23310997 | SRP484717 | Illumina NovaSeq 6000 | SRS20187325 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024911 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_21 (21PG40-1) | SAMN39503931 | SAC | 2025-02-20 | ||||||
| 94 | SRX23310998 | SRP484717 | Illumina NovaSeq 6000 | SRS20187326 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024912 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_210 (21PG57-1) | SAMN39503930 | SAC | 2025-02-20 | ||||||
| 95 | SRX23311086 | SRP484717 | Illumina NovaSeq 6000 | SRS20187411 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024913 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_22 (21PG40-1) | SAMN39503929 | SAC | 2025-02-20 | ||||||
| 96 | SRX23311087 | SRP484717 | Illumina NovaSeq 6000 | SRS20187415 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024914 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_23 (21PG40-1) | SAMN39503928 | SAC | 2025-02-20 | ||||||
| 97 | SRX23311088 | SRP484717 | Illumina NovaSeq 6000 | SRS20187416 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024915 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_230 (21PG49-3) | SAMN39503927 | SAC | 2025-02-20 | ||||||
| 98 | SRX23310852 | SRP484717 | Illumina NovaSeq 6000 | SRS20187180 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024916 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_231 (21PG49-3) | SAMN39503926 | SAC | 2025-02-20 | ||||||
| 99 | SRX23310853 | SRP484717 | Illumina NovaSeq 6000 | SRS20187181 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024917 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_232 (21PG49-3) | SAMN39503925 | SAC | 2025-02-20 | ||||||
| 100 | SRX23310854 | SRP484717 | Illumina NovaSeq 6000 | SRS20187182 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024918 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_233 (21PG49-3) | SAMN39503924 | SAC | 2025-02-20 | ||||||
| 101 | SRX23310855 | SRP484717 | Illumina NovaSeq 6000 | SRS20187183 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024919 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_234 (21PG49-3) | SAMN39503923 | SAC | 2025-02-20 | ||||||
| 102 | SRX23310856 | SRP484717 | Illumina NovaSeq 6000 | SRS20187184 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024920 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_235 (21PG49-3) | SAMN39503922 | SAC | 2025-02-20 | ||||||
| 103 | SRX23310857 | SRP484717 | Illumina NovaSeq 6000 | SRS20187186 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024921 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_236 (21PG49-3) | SAMN39503921 | SAC | 2025-02-20 | ||||||
| 104 | SRX23310858 | SRP484717 | Illumina NovaSeq 6000 | SRS20187187 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024922 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_237 (21PG49-3) | SAMN39503920 | SAC | 2025-02-20 | ||||||
| 105 | SRX23310859 | SRP484717 | Illumina NovaSeq 6000 | SRS20187185 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024923 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_238 (21PG49-3) | SAMN39503919 | SAC | 2025-02-20 | ||||||
| 106 | SRX23311032 | SRP484717 | Illumina NovaSeq 6000 | SRS20187358 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024924 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_239 (21PG49-3) | SAMN39503918 | SAC | 2025-02-20 | ||||||
| 107 | SRX23311033 | SRP484717 | Illumina NovaSeq 6000 | SRS20187362 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024925 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_24 (21PG40-1) | SAMN39503917 | SAC | 2025-02-20 | ||||||
| 108 | SRX23311034 | SRP484717 | Illumina NovaSeq 6000 | SRS20187361 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024926 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_240 (21PG49-3) | SAMN39503916 | SAC | 2025-02-20 | ||||||
| 109 | SRX23311035 | SRP484717 | Illumina NovaSeq 6000 | SRS20187364 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024927 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_241 (21PG49-3) | SAMN39503915 | SAC | 2025-02-20 | ||||||
| 110 | SRX23311036 | SRP484717 | Illumina NovaSeq 6000 | SRS20187365 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024928 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_242 (21PG49-3) | SAMN39503914 | SAC | 2025-02-20 | ||||||
| 111 | SRX23311037 | SRP484717 | Illumina NovaSeq 6000 | SRS20187363 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024929 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_243 (21PG49-3) | SAMN39503913 | SAC | 2025-02-20 | ||||||
| 112 | SRX23311038 | SRP484717 | Illumina NovaSeq 6000 | SRS20187366 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024930 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_244 (21PG49-3) | SAMN39503912 | SAC | 2025-02-20 | ||||||
| 113 | SRX23311039 | SRP484717 | Illumina NovaSeq 6000 | SRS20187367 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024931 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_245 (21PG49-3) | SAMN39503911 | SAC | 2025-02-20 | ||||||
| 114 | SRX23311424 | SRP484717 | Illumina NovaSeq 6000 | SRS20187752 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024932 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_246 (21PG49-3) | SAMN39503910 | SAC | 2025-02-20 | ||||||
| 115 | SRX23311425 | SRP484717 | Illumina NovaSeq 6000 | SRS20187751 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024933 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_247 (21PG49-3) | SAMN39503909 | SAC | 2025-02-20 | ||||||
| 116 | SRX23311426 | SRP484717 | Illumina NovaSeq 6000 | SRS20187754 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024934 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_248 (21PG49-3) | SAMN39503908 | SAC | 2025-02-20 | ||||||
| 117 | SRX23311427 | SRP484717 | Illumina NovaSeq 6000 | SRS20187755 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024935 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_249 (21PG49-3) | SAMN39503907 | SAC | 2025-02-20 | ||||||
| 118 | SRX23311428 | SRP484717 | Illumina NovaSeq 6000 | SRS20187756 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024936 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_25 (21PG40-1) | SAMN39503906 | SAC | 2025-02-20 | ||||||
| 119 | SRX23311429 | SRP484717 | Illumina NovaSeq 6000 | SRS20187757 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024937 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_250 (21PG49-3) | SAMN39503905 | SAC | 2025-02-20 | ||||||
| 120 | SRX23311430 | SRP484717 | Illumina NovaSeq 6000 | SRS20187758 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024938 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_251 (21PG49-3) | SAMN39503904 | SAC | 2025-02-20 | ||||||
| 121 | SRX23311431 | SRP484717 | Illumina NovaSeq 6000 | SRS20187759 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024939 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_252 (21PG49-3) | SAMN39503903 | SAC | 2025-02-20 | ||||||
| 122 | SRX23311089 | SRP484717 | Illumina NovaSeq 6000 | SRS20187417 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024940 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_253 (21PG49-3) | SAMN39503902 | SAC | 2025-02-20 | ||||||
| 123 | SRX23311090 | SRP484717 | Illumina NovaSeq 6000 | SRS20187418 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024941 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_254 (21PG76-2) | SAMN39503901 | SAC | 2025-02-20 | ||||||
| 124 | SRX23311091 | SRP484717 | Illumina NovaSeq 6000 | SRS20187420 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024942 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_255 (21PG76-2) | SAMN39503900 | SAC | 2025-02-20 | ||||||
| 125 | SRX23311093 | SRP484717 | Illumina NovaSeq 6000 | SRS20187421 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024944 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_257 (20PG4-2) | SAMN39503898 | SAC | 2025-02-20 | ||||||
| 126 | SRX23311094 | SRP484717 | Illumina NovaSeq 6000 | SRS20187422 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024945 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_258 (20PG4-2) | SAMN39503897 | SAC | 2025-02-20 | ||||||
| 127 | SRX23311095 | SRP484717 | Illumina NovaSeq 6000 | SRS20187424 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024946 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_259 (20PG4-2) | SAMN39503896 | SAC | 2025-02-20 | ||||||
| 128 | SRX23311096 | SRP484717 | Illumina NovaSeq 6000 | SRS20187423 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024947 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_26 (21PG40-1) | SAMN39503895 | SAC | 2025-02-20 | ||||||
| 129 | SRX23310860 | SRP484717 | Illumina NovaSeq 6000 | SRS20187188 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024948 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_260 (20PG4-2) | SAMN39503894 | SAC | 2025-02-20 | ||||||
| 130 | SRX23310861 | SRP484717 | Illumina NovaSeq 6000 | SRS20187190 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024949 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_261 (20PG4-2) | SAMN39503893 | SAC | 2025-02-20 | ||||||
| 131 | SRX23310862 | SRP484717 | Illumina NovaSeq 6000 | SRS20187189 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024950 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_262 (20PG4-2) | SAMN39503892 | SAC | 2025-02-20 | ||||||
| 132 | SRX23310863 | SRP484717 | Illumina NovaSeq 6000 | SRS20187191 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024951 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_263 (20PG4-2) | SAMN39503891 | SAC | 2025-02-20 | ||||||
| 133 | SRX23310864 | SRP484717 | Illumina NovaSeq 6000 | SRS20187192 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024952 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_264 (20PG4-2) | SAMN39503890 | SAC | 2025-02-20 | ||||||
| 134 | SRX23310865 | SRP484717 | Illumina NovaSeq 6000 | SRS20187194 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024953 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_265 (20PG4-2) | SAMN39503889 | SAC | 2025-02-20 | ||||||
| 135 | SRX23310866 | SRP484717 | Illumina NovaSeq 6000 | SRS20187193 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024954 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_266 (20PG4-2) | SAMN39503888 | SAC | 2025-02-20 | ||||||
| 136 | SRX23310867 | SRP484717 | Illumina NovaSeq 6000 | SRS20187195 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024955 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_267 (20PG4-2) | SAMN39503887 | SAC | 2025-02-20 | ||||||
| 137 | SRX23311040 | SRP484717 | Illumina NovaSeq 6000 | SRS20187368 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024956 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_268 (20PG4-2) | SAMN39503886 | SAC | 2025-02-20 | ||||||
| 138 | SRX23311041 | SRP484717 | Illumina NovaSeq 6000 | SRS20187371 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024957 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_269 (20PG4-2) | SAMN39503885 | SAC | 2025-02-20 | ||||||
| 139 | SRX23311042 | SRP484717 | Illumina NovaSeq 6000 | SRS20187369 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024958 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_27 (21PG40-1) | SAMN39503884 | SAC | 2025-02-20 | ||||||
| 140 | SRX23311043 | SRP484717 | Illumina NovaSeq 6000 | SRS20187370 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024959 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_270 (20PG4-2) | SAMN39503883 | SAC | 2025-02-20 | ||||||
| 141 | SRX23311044 | SRP484717 | Illumina NovaSeq 6000 | SRS20187372 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024960 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_271 (20PG4-2) | SAMN39503882 | SAC | 2025-02-20 | ||||||
| 142 | SRX23311045 | SRP484717 | Illumina NovaSeq 6000 | SRS20187374 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024961 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_272 (20PG4-2) | SAMN39503881 | SAC | 2025-02-20 | ||||||
| 143 | SRX23311046 | SRP484717 | Illumina NovaSeq 6000 | SRS20187373 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024962 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_273 (20PG4-2) | SAMN39503880 | SAC | 2025-02-20 | ||||||
| 144 | SRX23311047 | SRP484717 | Illumina NovaSeq 6000 | SRS20187376 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024963 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_274 (20PG4-2) | SAMN39503879 | SAC | 2025-02-20 | ||||||
| 145 | SRX23311432 | SRP484717 | Illumina NovaSeq 6000 | SRS20187760 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024964 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_275 (20PG4-2) | SAMN39503878 | SAC | 2025-02-20 | ||||||
| 146 | SRX23311433 | SRP484717 | Illumina NovaSeq 6000 | SRS20187761 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024965 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_276 (20PG4-2) | SAMN39503877 | SAC | 2025-02-20 | ||||||
| 147 | SRX23311434 | SRP484717 | Illumina NovaSeq 6000 | SRS20187762 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024966 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_277 (20PG4-2) | SAMN39503876 | SAC | 2025-02-20 | ||||||
| 148 | SRX23311435 | SRP484717 | Illumina NovaSeq 6000 | SRS20187764 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024967 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_278 (20PG4-2) | SAMN39503875 | SAC | 2025-02-20 | ||||||
| 149 | SRX23311436 | SRP484717 | Illumina NovaSeq 6000 | SRS20187763 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024968 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_279 (20PG4-2) | SAMN39503874 | SAC | 2025-02-20 | ||||||
| 150 | SRX23311437 | SRP484717 | Illumina NovaSeq 6000 | SRS20187765 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024969 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_28 (21PG40-1) | SAMN39503873 | SAC | 2025-02-20 | ||||||
| 151 | SRX23311438 | SRP484717 | Illumina NovaSeq 6000 | SRS20187769 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024970 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_280 (20PG4-2) | SAMN39503872 | SAC | 2025-02-20 | ||||||
| 152 | SRX23311439 | SRP484717 | Illumina NovaSeq 6000 | SRS20187767 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024971 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_281 (20PG4-2) | SAMN39503871 | SAC | 2025-02-20 | ||||||
| 153 | SRX23311097 | SRP484717 | Illumina NovaSeq 6000 | SRS20187425 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024972 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_282 (20PG4-2) | SAMN39503870 | SAC | 2025-02-20 | ||||||
| 154 | SRX23311098 | SRP484717 | Illumina NovaSeq 6000 | SRS20187426 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024973 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_283 (20PG4-2) | SAMN39503869 | SAC | 2025-02-20 | ||||||
| 155 | SRX23311099 | SRP484717 | Illumina NovaSeq 6000 | SRS20187427 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024974 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_284 (20PG4-2) | SAMN39503868 | SAC | 2025-02-20 | ||||||
| 156 | SRX23311100 | SRP484717 | Illumina NovaSeq 6000 | SRS20187429 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024975 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_285 (20PG4-2) | SAMN39503867 | SAC | 2025-02-20 | ||||||
| 157 | SRX23311101 | SRP484717 | Illumina NovaSeq 6000 | SRS20187430 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024976 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_286 (20PG4-2) | SAMN39503866 | SAC | 2025-02-20 | ||||||
| 158 | SRX23311102 | SRP484717 | Illumina NovaSeq 6000 | SRS20187428 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024977 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_287 (20PG4-2) | SAMN39503865 | SAC | 2025-02-20 | ||||||
| 159 | SRX23311103 | SRP484717 | Illumina NovaSeq 6000 | SRS20187431 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024978 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_288 (21PG57-1) | SAMN39503864 | SAC | 2025-02-20 | ||||||
| 160 | SRX23310868 | SRP484717 | Illumina NovaSeq 6000 | SRS20187197 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024980 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_29 (21PG40-1) | SAMN39503862 | SAC | 2025-02-20 | ||||||
| 161 | SRX23310869 | SRP484717 | Illumina NovaSeq 6000 | SRS20187196 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024981 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_290 (20PG4-1) | SAMN39503861 | SAC | 2025-02-20 | ||||||
| 162 | SRX23310870 | SRP484717 | Illumina NovaSeq 6000 | SRS20187198 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024982 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_291 (20PG4-1) | SAMN39503860 | SAC | 2025-02-20 | ||||||
| 163 | SRX23310871 | SRP484717 | Illumina NovaSeq 6000 | SRS20187199 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024983 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_292 (20PG4-1) | SAMN39503859 | SAC | 2025-02-20 | ||||||
| 164 | SRX23310872 | SRP484717 | Illumina NovaSeq 6000 | SRS20187202 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024984 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_293 (20PG4-1) | SAMN39503858 | SAC | 2025-02-20 | ||||||
| 165 | SRX23310873 | SRP484717 | Illumina NovaSeq 6000 | SRS20187200 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024985 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_294 (20PG4-1) | SAMN39503857 | SAC | 2025-02-20 | ||||||
| 166 | SRX23310874 | SRP484717 | Illumina NovaSeq 6000 | SRS20187201 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024986 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_295 (20PG4-1) | SAMN39503856 | SAC | 2025-02-20 | ||||||
| 167 | SRX23310875 | SRP484717 | Illumina NovaSeq 6000 | SRS20187203 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024987 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_296 (20PG4-1) | SAMN39503855 | SAC | 2025-02-20 | ||||||
| 168 | SRX23311048 | SRP484717 | Illumina NovaSeq 6000 | SRS20187375 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024988 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_297 (20PG4-1) | SAMN39503854 | SAC | 2025-02-20 | ||||||
| 169 | SRX23311049 | SRP484717 | Illumina NovaSeq 6000 | SRS20187377 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024989 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_298 (20PG4-1) | SAMN39503853 | SAC | 2025-02-20 | ||||||
| 170 | SRX23311050 | SRP484717 | Illumina NovaSeq 6000 | SRS20187378 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024990 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_299 (20PG4-1) | SAMN39503852 | SAC | 2025-02-20 | ||||||
| 171 | SRX23311051 | SRP484717 | Illumina NovaSeq 6000 | SRS20187379 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024991 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_3 (21PG50-2) | SAMN39503851 | SAC | 2025-02-20 | ||||||
| 172 | SRX23311052 | SRP484717 | Illumina NovaSeq 6000 | SRS20187380 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024992 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_30 (21PG40-1) | SAMN39503850 | SAC | 2025-02-20 | ||||||
| 173 | SRX23311053 | SRP484717 | Illumina NovaSeq 6000 | SRS20187381 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024993 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_300 (20PG4-1) | SAMN39503849 | SAC | 2025-02-20 | ||||||
| 174 | SRX23311054 | SRP484717 | Illumina NovaSeq 6000 | SRS20187382 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024994 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_301 (20PG4-1) | SAMN39503848 | SAC | 2025-02-20 | ||||||
| 175 | SRX23311055 | SRP484717 | Illumina NovaSeq 6000 | SRS20187383 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024995 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_302 (20PG4-1) | SAMN39503847 | SAC | 2025-02-20 | ||||||
| 176 | SRX23311441 | SRP484717 | Illumina NovaSeq 6000 | SRS20187768 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024997 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_304 (20PG4-1) | SAMN39503845 | SAC | 2025-02-20 | ||||||
| 177 | SRX23311442 | SRP484717 | Illumina NovaSeq 6000 | SRS20187772 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024998 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_305 (20PG4-1) | SAMN39503844 | SAC | 2025-02-20 | ||||||
| 178 | SRX23311443 | SRP484717 | Illumina NovaSeq 6000 | SRS20187770 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024999 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_306 (20PG4-1) | SAMN39503843 | SAC | 2025-02-20 | ||||||
| 179 | SRX23311444 | SRP484717 | Illumina NovaSeq 6000 | SRS20187771 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025000 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_307 (20PG4-1) | SAMN39503842 | SAC | 2025-02-20 | ||||||
| 180 | SRX23311446 | SRP484717 | Illumina NovaSeq 6000 | SRS20187774 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025002 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_309 (20PG4-1) | SAMN39503840 | SAC | 2025-02-20 | ||||||
| 181 | SRX23311447 | SRP484717 | Illumina NovaSeq 6000 | SRS20187775 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025003 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_31 (21PG40-1) | SAMN39503839 | SAC | 2025-02-20 | ||||||
| 182 | SRX23311106 | SRP484717 | Illumina NovaSeq 6000 | SRS20187435 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025005 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_311 (20PG4-1) | SAMN39503837 | SAC | 2025-02-20 | ||||||
| 183 | SRX23311109 | SRP484717 | Illumina NovaSeq 6000 | SRS20187437 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025008 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_314 (21PG75-1) | SAMN39503834 | SAC | 2025-02-20 | ||||||
| 184 | SRX23311110 | SRP484717 | Illumina NovaSeq 6000 | SRS20187436 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025009 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_315 (21PG75-1) | SAMN39503833 | SAC | 2025-02-20 | ||||||
| 185 | SRX23311111 | SRP484717 | Illumina NovaSeq 6000 | SRS20187440 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025010 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_316 (21PG75-1) | SAMN39503832 | SAC | 2025-02-20 | ||||||
| 186 | SRX23310877 | SRP484717 | Illumina NovaSeq 6000 | SRS20187204 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025013 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_319 (21PG75-1) | SAMN39503829 | SAC | 2025-02-20 | ||||||
| 187 | SRX23310878 | SRP484717 | Illumina NovaSeq 6000 | SRS20187206 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025014 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_32 (21PG40-1) | SAMN39503828 | SAC | 2025-02-20 | ||||||
| 188 | SRX23310879 | SRP484717 | Illumina NovaSeq 6000 | SRS20187207 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025015 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_320 (21PG75-1) | SAMN39503827 | SAC | 2025-02-20 | ||||||
| 189 | SRX23310880 | SRP484717 | Illumina NovaSeq 6000 | SRS20187208 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025016 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_321 (21PG75-1) | SAMN39503826 | SAC | 2025-02-20 | ||||||
| 190 | SRX23310881 | SRP484717 | Illumina NovaSeq 6000 | SRS20187209 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025017 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_322 (21PG75-1) | SAMN39503825 | SAC | 2025-02-20 | ||||||
| 191 | SRX23310882 | SRP484717 | Illumina NovaSeq 6000 | SRS20187212 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025018 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_323 (21PG75-1) | SAMN39503824 | SAC | 2025-02-20 | ||||||
| 192 | SRX23310883 | SRP484717 | Illumina NovaSeq 6000 | SRS20187211 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025019 | Late blastocyst: E6 | TE: polar | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_324 (21PG75-1) | SAMN39503823 | SAC | 2025-02-20 | ||||||
| 193 | SRX23311056 | SRP484717 | Illumina NovaSeq 6000 | SRS20187384 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025020 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_325 (21PG75-1) | SAMN39503822 | SAC | 2025-02-20 | ||||||
| 194 | SRX23311057 | SRP484717 | Illumina NovaSeq 6000 | SRS20187386 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025021 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_326 (21PG75-1) | SAMN39503821 | SAC | 2025-02-20 | ||||||
| 195 | SRX23311059 | SRP484717 | Illumina NovaSeq 6000 | SRS20187385 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025023 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_328 (21PG75-1) | SAMN39503819 | SAC | 2025-02-20 | ||||||
| 196 | SRX23311060 | SRP484717 | Illumina NovaSeq 6000 | SRS20187389 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025024 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_329 (21PG75-1) | SAMN39503818 | SAC | 2025-02-20 | ||||||
| 197 | SRX23311061 | SRP484717 | Illumina NovaSeq 6000 | SRS20187390 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025025 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_33 (21PG40-1) | SAMN39503817 | SAC | 2025-02-20 | ||||||
| 198 | SRX23311062 | SRP484717 | Illumina NovaSeq 6000 | SRS20187388 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025026 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_330 (21PG75-1) | SAMN39503816 | SAC | 2025-02-20 | ||||||
| 199 | SRX23311063 | SRP484717 | Illumina NovaSeq 6000 | SRS20187391 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025027 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_331 (21PG75-1) | SAMN39503815 | SAC | 2025-02-20 | ||||||
| 200 | SRX23311448 | SRP484717 | Illumina NovaSeq 6000 | SRS20187776 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025028 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_332 (21PG75-1) | SAMN39503814 | SAC | 2025-02-20 | ||||||
| 201 | SRX23311449 | SRP484717 | Illumina NovaSeq 6000 | SRS20187777 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025029 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_333 (21PG75-1) | SAMN39503813 | SAC | 2025-02-20 | ||||||
| 202 | SRX23311450 | SRP484717 | Illumina NovaSeq 6000 | SRS20187778 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025030 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_334 (21PG75-1) | SAMN39503812 | SAC | 2025-02-20 | ||||||
| 203 | SRX23311451 | SRP484717 | Illumina NovaSeq 6000 | SRS20187780 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025031 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_335 (21PG52-2) | SAMN39503811 | SAC | 2025-02-20 | ||||||
| 204 | SRX23311452 | SRP484717 | Illumina NovaSeq 6000 | SRS20187779 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025032 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_336 (21PG52-2) | SAMN39503810 | SAC | 2025-02-20 | ||||||
| 205 | SRX23311453 | SRP484717 | Illumina NovaSeq 6000 | SRS20187781 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025033 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_337 (21PG52-2) | SAMN39503809 | SAC | 2025-02-20 | ||||||
| 206 | SRX23311454 | SRP484717 | Illumina NovaSeq 6000 | SRS20187782 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025034 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_338 (21PG52-2) | SAMN39503808 | SAC | 2025-02-20 | ||||||
| 207 | SRX23311113 | SRP484717 | Illumina NovaSeq 6000 | SRS20187442 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025036 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_34 (21PG40-1) | SAMN39503806 | SAC | 2025-02-20 | ||||||
| 208 | SRX23311114 | SRP484717 | Illumina NovaSeq 6000 | SRS20187441 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025037 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_340 (21PG52-2) | SAMN39503805 | SAC | 2025-02-20 | ||||||
| 209 | SRX23311115 | SRP484717 | Illumina NovaSeq 6000 | SRS20187443 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025038 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_341 (21PG52-2) | SAMN39503804 | SAC | 2025-02-20 | ||||||
| 210 | SRX23311116 | SRP484717 | Illumina NovaSeq 6000 | SRS20187444 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025039 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_342 (21PG52-2) | SAMN39503803 | SAC | 2025-02-20 | ||||||
| 211 | SRX23311117 | SRP484717 | Illumina NovaSeq 6000 | SRS20187446 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025040 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_343 (21PG52-2) | SAMN39503802 | SAC | 2025-02-20 | ||||||
| 212 | SRX23311118 | SRP484717 | Illumina NovaSeq 6000 | SRS20187445 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025041 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_344 (21PG52-2) | SAMN39503801 | SAC | 2025-02-20 | ||||||
| 213 | SRX23311119 | SRP484717 | Illumina NovaSeq 6000 | SRS20187447 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025042 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_345 (21PG52-2) | SAMN39503800 | SAC | 2025-02-20 | ||||||
| 214 | SRX23311120 | SRP484717 | Illumina NovaSeq 6000 | SRS20187448 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025043 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_346 (21PG52-2) | SAMN39503799 | SAC | 2025-02-20 | ||||||
| 215 | SRX23310884 | SRP484717 | Illumina NovaSeq 6000 | SRS20187210 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025044 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_347 (21PG52-2) | SAMN39503798 | SAC | 2025-02-20 | ||||||
| 216 | SRX23310885 | SRP484717 | Illumina NovaSeq 6000 | SRS20187213 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025045 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_348 (21PG52-2) | SAMN39503797 | SAC | 2025-02-20 | ||||||
| 217 | SRX23310886 | SRP484717 | Illumina NovaSeq 6000 | SRS20187215 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025046 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_349 (21PG52-2) | SAMN39503796 | SAC | 2025-02-20 | ||||||
| 218 | SRX23310887 | SRP484717 | Illumina NovaSeq 6000 | SRS20187214 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025047 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_35 (21PG40-1) | SAMN39503795 | SAC | 2025-02-20 | ||||||
| 219 | SRX23310889 | SRP484717 | Illumina NovaSeq 6000 | SRS20187217 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025049 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_351 (21PG52-2) | SAMN39503793 | SAC | 2025-02-20 | ||||||
| 220 | SRX23310890 | SRP484717 | Illumina NovaSeq 6000 | SRS20187218 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025050 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_352 (21PG52-2) | SAMN39503792 | SAC | 2025-02-20 | ||||||
| 221 | SRX23310891 | SRP484717 | Illumina NovaSeq 6000 | SRS20187219 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025051 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_353 (21PG41-1) | SAMN39503791 | SAC | 2025-02-20 | ||||||
| 222 | SRX23311064 | SRP484717 | Illumina NovaSeq 6000 | SRS20187392 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025052 | 16-32 cell: E4.75 | Prelineage: Morula | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_354 (21PG41-1) | SAMN39503790 | SAC | 2025-02-20 | ||||||
| 223 | SRX23311065 | SRP484717 | Illumina NovaSeq 6000 | SRS20187393 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025053 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_355 (21PG41-1) | SAMN39503789 | SAC | 2025-02-20 | ||||||
| 224 | SRX23311066 | SRP484717 | Illumina NovaSeq 6000 | SRS20187395 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025054 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_356 (21PG41-1) | SAMN39503788 | SAC | 2025-02-20 | ||||||
| 225 | SRX23311067 | SRP484717 | Illumina NovaSeq 6000 | SRS20187396 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025055 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_357 (21PG41-1) | SAMN39503787 | SAC | 2025-02-20 | ||||||
| 226 | SRX23311068 | SRP484717 | Illumina NovaSeq 6000 | SRS20187394 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025056 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_358 (21PG41-1) | SAMN39503786 | SAC | 2025-02-20 | ||||||
| 227 | SRX23311069 | SRP484717 | Illumina NovaSeq 6000 | SRS20187397 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025057 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_359 (21PG41-1) | SAMN39503785 | SAC | 2025-02-20 | ||||||
| 228 | SRX23311070 | SRP484717 | Illumina NovaSeq 6000 | SRS20187398 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025058 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_36 (21PG40-1) | SAMN39503784 | SAC | 2025-02-20 | ||||||
| 229 | SRX23311071 | SRP484717 | Illumina NovaSeq 6000 | SRS20187399 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025059 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_360 (21PG41-1) | SAMN39503783 | SAC | 2025-02-20 | ||||||
| 230 | SRX23311458 | SRP484717 | Illumina NovaSeq 6000 | SRS20187786 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025062 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_37 (21PG40-1) | SAMN39503780 | SAC | 2025-02-20 | ||||||
| 231 | SRX23311459 | SRP484717 | Illumina NovaSeq 6000 | SRS20187787 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025063 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_38 (21PG40-1) | SAMN39503779 | SAC | 2025-02-20 | ||||||
| 232 | SRX23311460 | SRP484717 | Illumina NovaSeq 6000 | SRS20187788 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025064 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_39 (21PG40-1) | SAMN39503778 | SAC | 2025-02-20 | ||||||
| 233 | SRX23311461 | SRP484717 | Illumina NovaSeq 6000 | SRS20187789 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025065 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_4 (21PG50-2) | SAMN39503777 | SAC | 2025-02-20 | ||||||
| 234 | SRX23311462 | SRP484717 | Illumina NovaSeq 6000 | SRS20187791 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025066 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_40 (21PG40-1) | SAMN39503776 | SAC | 2025-02-20 | ||||||
| 235 | SRX23311463 | SRP484717 | Illumina NovaSeq 6000 | SRS20187790 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025067 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_41 (21PG40-1) | SAMN39503775 | SAC | 2025-02-20 | ||||||
| 236 | SRX23311121 | SRP484717 | Illumina NovaSeq 6000 | SRS20187449 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025068 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_42 (21PG40-1) | SAMN39503774 | SAC | 2025-02-20 | ||||||
| 237 | SRX23311122 | SRP484717 | Illumina NovaSeq 6000 | SRS20187450 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025069 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_43 (21PG51-2) | SAMN39503773 | SAC | 2025-02-20 | ||||||
| 238 | SRX23311123 | SRP484717 | Illumina NovaSeq 6000 | SRS20187452 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025070 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_44 (21PG51-2) | SAMN39503772 | SAC | 2025-02-20 | ||||||
| 239 | SRX23311124 | SRP484717 | Illumina NovaSeq 6000 | SRS20187451 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025071 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_45 (21PG51-2) | SAMN39503771 | SAC | 2025-02-20 | ||||||
| 240 | SRX23311125 | SRP484717 | Illumina NovaSeq 6000 | SRS20187453 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025072 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_46 (21PG51-2) | SAMN39503770 | SAC | 2025-02-20 | ||||||
| 241 | SRX23311126 | SRP484717 | Illumina NovaSeq 6000 | SRS20187455 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025073 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_47 (21PG51-2) | SAMN39503769 | SAC | 2025-02-20 | ||||||
| 242 | SRX23311127 | SRP484717 | Illumina NovaSeq 6000 | SRS20187454 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025074 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_48 (21PG51-2) | SAMN39503768 | SAC | 2025-02-20 | ||||||
| 243 | SRX23311128 | SRP484717 | Illumina NovaSeq 6000 | SRS20187456 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025075 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_49 (21PG51-2) | SAMN39503767 | SAC | 2025-02-20 | ||||||
| 244 | SRX23310892 | SRP484717 | Illumina NovaSeq 6000 | SRS20187220 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025076 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_5 (21PG50-2) | SAMN39503766 | SAC | 2025-02-20 | ||||||
| 245 | SRX23310893 | SRP484717 | Illumina NovaSeq 6000 | SRS20187221 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025077 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_50 (21PG51-2) | SAMN39503765 | SAC | 2025-02-20 | ||||||
| 246 | SRX23310894 | SRP484717 | Illumina NovaSeq 6000 | SRS20187222 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025078 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_51 (21PG51-2) | SAMN39503764 | SAC | 2025-02-20 | ||||||
| 247 | SRX23310895 | SRP484717 | Illumina NovaSeq 6000 | SRS20187224 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025079 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_52 (21PG51-2) | SAMN39503763 | SAC | 2025-02-20 | ||||||
| 248 | SRX23310896 | SRP484717 | Illumina NovaSeq 6000 | SRS20187223 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025080 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_53 (21PG51-2) | SAMN39503762 | SAC | 2025-02-20 | ||||||
| 249 | SRX23310897 | SRP484717 | Illumina NovaSeq 6000 | SRS20187226 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025081 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_54 (21PG51-2) | SAMN39503761 | SAC | 2025-02-20 | ||||||
| 250 | SRX23310898 | SRP484717 | Illumina NovaSeq 6000 | SRS20187225 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025082 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_55 (21PG51-2) | SAMN39503760 | SAC | 2025-02-20 | ||||||
| 251 | SRX23310899 | SRP484717 | Illumina NovaSeq 6000 | SRS20187227 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025083 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_56 (21PG51-2) | SAMN39503759 | SAC | 2025-02-20 | ||||||
| 252 | SRX23311072 | SRP484717 | Illumina NovaSeq 6000 | SRS20187401 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025084 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_57 (21PG51-2) | SAMN39503758 | SAC | 2025-02-20 | ||||||
| 253 | SRX23311073 | SRP484717 | Illumina NovaSeq 6000 | SRS20187402 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025085 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_58 (21PG51-2) | SAMN39503757 | SAC | 2025-02-20 | ||||||
| 254 | SRX23311074 | SRP484717 | Illumina NovaSeq 6000 | SRS20187400 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025086 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_59 (21PG51-2) | SAMN39503756 | SAC | 2025-02-20 | ||||||
| 255 | SRX23311075 | SRP484717 | Illumina NovaSeq 6000 | SRS20187403 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025087 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_6 (21PG50-2) | SAMN39503755 | SAC | 2025-02-20 | ||||||
| 256 | SRX23311076 | SRP484717 | Illumina NovaSeq 6000 | SRS20187405 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025088 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_60 (21PG51-2) | SAMN39503754 | SAC | 2025-02-20 | ||||||
| 257 | SRX23311077 | SRP484717 | Illumina NovaSeq 6000 | SRS20187404 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025089 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_61 (21PG51-2) | SAMN39503753 | SAC | 2025-02-20 | ||||||
| 258 | SRX23311078 | SRP484717 | Illumina NovaSeq 6000 | SRS20187406 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025090 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_62 (21PG51-3) | SAMN39503752 | SAC | 2025-02-20 | ||||||
| 259 | SRX23311079 | SRP484717 | Illumina NovaSeq 6000 | SRS20187408 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025091 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_63 (21PG51-3) | SAMN39503751 | SAC | 2025-02-20 | ||||||
| 260 | SRX23311464 | SRP484717 | Illumina NovaSeq 6000 | SRS20187792 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025092 | Early blastocyst: E4.5 | ICM: PE | Early blastocyst: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_64 (21PG51-3) | SAMN39503750 | SAC | 2025-02-20 | ||||||
| 261 | SRX23311465 | SRP484717 | Illumina NovaSeq 6000 | SRS20187793 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025093 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_65 (21PG51-3) | SAMN39503749 | SAC | 2025-02-20 | ||||||
| 262 | SRX23311466 | SRP484717 | Illumina NovaSeq 6000 | SRS20187794 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025094 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_66 (21PG51-3) | SAMN39503748 | SAC | 2025-02-20 | ||||||
| 263 | SRX23311467 | SRP484717 | Illumina NovaSeq 6000 | SRS20187797 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025095 | Early blastocyst: E4.5 | ICM: ICM | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_67 (21PG51-3) | SAMN39503747 | SAC | 2025-02-20 | ||||||
| 264 | SRX23311468 | SRP484717 | Illumina NovaSeq 6000 | SRS20187795 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025096 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_68 (21PG51-3) | SAMN39503746 | SAC | 2025-02-20 | ||||||
| 265 | SRX23311469 | SRP484717 | Illumina NovaSeq 6000 | SRS20187796 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025097 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_69 (21PG51-3) | SAMN39503745 | SAC | 2025-02-20 | ||||||
| 266 | SRX23311470 | SRP484717 | Illumina NovaSeq 6000 | SRS20187798 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025098 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_7 (21PG50-2) | SAMN39503744 | SAC | 2025-02-20 | ||||||
| 267 | SRX23311471 | SRP484717 | Illumina NovaSeq 6000 | SRS20187799 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025099 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_70 (21PG51-3) | SAMN39503743 | SAC | 2025-02-20 | ||||||
| 268 | SRX23311129 | SRP484717 | Illumina NovaSeq 6000 | SRS20187457 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025100 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_71 (21PG51-3) | SAMN39503742 | SAC | 2025-02-20 | ||||||
| 269 | SRX23311130 | SRP484717 | Illumina NovaSeq 6000 | SRS20187458 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025101 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_72 (21PG51-3) | SAMN39503741 | SAC | 2025-02-20 | ||||||
| 270 | SRX23311131 | SRP484717 | Illumina NovaSeq 6000 | SRS20187459 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025102 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_73 (21PG51-3) | SAMN39503740 | SAC | 2025-02-20 | ||||||
| 271 | SRX23311132 | SRP484717 | Illumina NovaSeq 6000 | SRS20187461 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025103 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_74 (21PG76-1) | SAMN39503739 | SAC | 2025-02-20 | ||||||
| 272 | SRX23311133 | SRP484717 | Illumina NovaSeq 6000 | SRS20187460 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025104 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_75 (21PG76-1) | SAMN39503738 | SAC | 2025-02-20 | ||||||
| 273 | SRX23311134 | SRP484717 | Illumina NovaSeq 6000 | SRS20187462 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025105 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_76 (21PG76-1) | SAMN39503737 | SAC | 2025-02-20 | ||||||
| 274 | SRX23310901 | SRP484717 | Illumina NovaSeq 6000 | SRS20187229 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025109 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_8 (21PG50-2) | SAMN39503733 | SAC | 2025-02-20 | ||||||
| 275 | SRX23310902 | SRP484717 | Illumina NovaSeq 6000 | SRS20187230 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025110 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_80 (21PG76-2) | SAMN39503732 | SAC | 2025-02-20 | ||||||
| 276 | SRX23311082 | SRP484717 | Illumina NovaSeq 6000 | SRS20187410 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025118 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_88 (21PG76-2) | SAMN39503724 | SAC | 2025-02-20 | ||||||
| 277 | SRX23311083 | SRP484717 | Illumina NovaSeq 6000 | SRS20187412 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025119 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_89 (21PG76-2) | SAMN39503723 | SAC | 2025-02-20 | ||||||
| 278 | SRX23311084 | SRP484717 | Illumina NovaSeq 6000 | SRS20187413 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025120 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_9 (21PG39-1) | SAMN39503722 | SAC | 2025-02-20 | ||||||
| 279 | SRX23311085 | SRP484717 | Illumina NovaSeq 6000 | SRS20187414 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025121 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_90 (21PG76-2) | SAMN39503721 | SAC | 2025-02-20 | ||||||
| 280 | SRX23311472 | SRP484717 | Illumina NovaSeq 6000 | SRS20187800 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025124 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_93 (21PG76-2) | SAMN39503718 | SAC | 2025-02-20 | ||||||
| 281 | SRX23311473 | SRP484717 | Illumina NovaSeq 6000 | SRS20187803 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025125 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_94 (21PG76-2) | SAMN39503717 | SAC | 2025-02-20 | ||||||
| 282 | SRX23311475 | SRP484717 | Illumina NovaSeq 6000 | SRS20187804 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025127 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_96 (21PG76-2) | SAMN39503715 | SAC | 2025-02-20 | ||||||
| 283 | SRX23311476 | SRP484717 | Illumina NovaSeq 6000 | SRS20187802 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025128 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_97 (21PG55-2) | SAMN39503714 | SAC | 2025-02-20 | ||||||
| 284 | SRX23311477 | SRP484717 | Illumina NovaSeq 6000 | SRS20187805 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025129 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_98 (21PG55-2) | SAMN39503713 | SAC | 2025-02-20 | ||||||
| 285 | SRX23311478 | SRP484717 | Illumina NovaSeq 6000 | SRS20187806 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025130 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_99 (21PG55-2) | SAMN39503712 | SAC | 2025-02-20 | ||||||
| 286 | SRX23311479 | SRP484717 | Illumina NovaSeq 6000 | SRS20187808 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025131 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_1 (21PG50-3) | SAMN39503711 | SAC | 2025-02-20 | ||||||
| 287 | SRX23311137 | SRP484717 | Illumina NovaSeq 6000 | SRS20187463 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025132 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_10 (21PG77-1) | SAMN39503710 | SAC | 2025-02-20 | ||||||
| 288 | SRX23311138 | SRP484717 | Illumina NovaSeq 6000 | SRS20187466 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025133 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_100 (21PG55-3) | SAMN39503709 | SAC | 2025-02-20 | ||||||
| 289 | SRX23311139 | SRP484717 | Illumina NovaSeq 6000 | SRS20187467 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025134 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_101 (21PG55-3) | SAMN39503708 | SAC | 2025-02-20 | ||||||
| 290 | SRX23311140 | SRP484717 | Illumina NovaSeq 6000 | SRS20187469 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025135 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_102 (21PG55-3) | SAMN39503707 | SAC | 2025-02-20 | ||||||
| 291 | SRX23311141 | SRP484717 | Illumina NovaSeq 6000 | SRS20187470 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025136 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_103 (21PG55-3) | SAMN39503706 | SAC | 2025-02-20 | ||||||
| 292 | SRX23311142 | SRP484717 | Illumina NovaSeq 6000 | SRS20187468 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025137 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_104 (21PG55-3) | SAMN39503705 | SAC | 2025-02-20 | ||||||
| 293 | SRX23311143 | SRP484717 | Illumina NovaSeq 6000 | SRS20187472 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025138 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_105 (21PG55-3) | SAMN39503704 | SAC | 2025-02-20 | ||||||
| 294 | SRX23311144 | SRP484717 | Illumina NovaSeq 6000 | SRS20187471 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025139 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_106 (21PG55-3) | SAMN39503703 | SAC | 2025-02-20 | ||||||
| 295 | SRX23310908 | SRP484717 | Illumina NovaSeq 6000 | SRS20187237 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025140 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_107 (21PG55-3) | SAMN39503702 | SAC | 2025-02-20 | ||||||
| 296 | SRX23310909 | SRP484717 | Illumina NovaSeq 6000 | SRS20187236 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025141 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_108 (21PG55-3) | SAMN39503701 | SAC | 2025-02-20 | ||||||
| 297 | SRX23310910 | SRP484717 | Illumina NovaSeq 6000 | SRS20187238 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025142 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_109 (21PG55-3) | SAMN39503700 | SAC | 2025-02-20 | ||||||
| 298 | SRX23310911 | SRP484717 | Illumina NovaSeq 6000 | SRS20187239 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025143 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_11 (21PG77-1) | SAMN39503699 | SAC | 2025-02-20 | ||||||
| 299 | SRX23311312 | SRP484717 | Illumina NovaSeq 6000 | SRS20187640 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025144 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_110 (21PG55-3) | SAMN39503698 | SAC | 2025-02-20 | ||||||
| 300 | SRX23311313 | SRP484717 | Illumina NovaSeq 6000 | SRS20187641 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025145 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_111 (21PG55-3) | SAMN39503697 | SAC | 2025-02-20 | ||||||
| 301 | SRX23311314 | SRP484717 | Illumina NovaSeq 6000 | SRS20187643 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025146 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_112 (21PG55-3) | SAMN39503696 | SAC | 2025-02-20 | ||||||
| 302 | SRX23311175 | SRP484717 | Illumina NovaSeq 6000 | SRS20187504 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025148 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_114 (21PG55-3) | SAMN39503694 | SAC | 2025-02-20 | ||||||
| 303 | SRX23311176 | SRP484717 | Illumina NovaSeq 6000 | SRS20187503 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025149 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_115 (21PG55-3) | SAMN39503693 | SAC | 2025-02-20 | ||||||
| 304 | SRX23311177 | SRP484717 | Illumina NovaSeq 6000 | SRS20187505 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025150 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_116 (21PG49-1) | SAMN39503692 | SAC | 2025-02-20 | ||||||
| 305 | SRX23311178 | SRP484717 | Illumina NovaSeq 6000 | SRS20187506 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025151 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_117 (21PG49-1) | SAMN39503691 | SAC | 2025-02-20 | ||||||
| 306 | SRX23311179 | SRP484717 | Illumina NovaSeq 6000 | SRS20187507 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025152 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_118 (21PG49-1) | SAMN39503690 | SAC | 2025-02-20 | ||||||
| 307 | SRX23311180 | SRP484717 | Illumina NovaSeq 6000 | SRS20187508 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025153 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_119 (21PG49-1) | SAMN39503689 | SAC | 2025-02-20 | ||||||
| 308 | SRX23311181 | SRP484717 | Illumina NovaSeq 6000 | SRS20187509 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025154 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_12 (21PG77-1) | SAMN39503688 | SAC | 2025-02-20 | ||||||
| 309 | SRX23311182 | SRP484717 | Illumina NovaSeq 6000 | SRS20187510 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025155 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_120 (21PG49-1) | SAMN39503687 | SAC | 2025-02-20 | ||||||
| 310 | SRX23311480 | SRP484717 | Illumina NovaSeq 6000 | SRS20187807 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025156 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_121 (21PG49-1) | SAMN39503686 | SAC | 2025-02-20 | ||||||
| 311 | SRX23311481 | SRP484717 | Illumina NovaSeq 6000 | SRS20187809 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025157 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_122 (21PG49-1) | SAMN39503685 | SAC | 2025-02-20 | ||||||
| 312 | SRX23311483 | SRP484717 | Illumina NovaSeq 6000 | SRS20187811 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025159 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_124 (21PG49-1) | SAMN39503683 | SAC | 2025-02-20 | ||||||
| 313 | SRX23311484 | SRP484717 | Illumina NovaSeq 6000 | SRS20187812 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025160 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_125 (21PG49-1) | SAMN39503682 | SAC | 2025-02-20 | ||||||
| 314 | SRX23311485 | SRP484717 | Illumina NovaSeq 6000 | SRS20187813 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025161 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_126 (21PG49-1) | SAMN39503681 | SAC | 2025-02-20 | ||||||
| 315 | SRX23310912 | SRP484717 | Illumina NovaSeq 6000 | SRS20187240 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025162 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_127 (21PG49-1) | SAMN39503680 | SAC | 2025-02-20 | ||||||
| 316 | SRX23310913 | SRP484717 | Illumina NovaSeq 6000 | SRS20187241 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025163 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_128 (21PG49-1) | SAMN39503679 | SAC | 2025-02-20 | ||||||
| 317 | SRX23311146 | SRP484717 | Illumina NovaSeq 6000 | SRS20187474 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025165 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_13 (21PG77-1) | SAMN39503677 | SAC | 2025-02-20 | ||||||
| 318 | SRX23311148 | SRP484717 | Illumina NovaSeq 6000 | SRS20187475 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025167 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_131 (21PG49-2) | SAMN39503675 | SAC | 2025-02-20 | ||||||
| 319 | SRX23311149 | SRP484717 | Illumina NovaSeq 6000 | SRS20187480 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025168 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_132 (21PG49-2) | SAMN39503674 | SAC | 2025-02-20 | ||||||
| 320 | SRX23311150 | SRP484717 | Illumina NovaSeq 6000 | SRS20187479 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025169 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_133 (21PG49-2) | SAMN39503673 | SAC | 2025-02-20 | ||||||
| 321 | SRX23311151 | SRP484717 | Illumina NovaSeq 6000 | SRS20187477 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025170 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_134 (21PG49-2) | SAMN39503672 | SAC | 2025-02-20 | ||||||
| 322 | SRX23311152 | SRP484717 | Illumina NovaSeq 6000 | SRS20187478 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025171 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_135 (21PG49-2) | SAMN39503671 | SAC | 2025-02-20 | ||||||
| 323 | SRX23311316 | SRP484717 | Illumina NovaSeq 6000 | SRS20187642 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025172 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_136 (21PG49-2) | SAMN39503670 | SAC | 2025-02-20 | ||||||
| 324 | SRX23311317 | SRP484717 | Illumina NovaSeq 6000 | SRS20187645 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025173 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_137 (21PG49-2) | SAMN39503669 | SAC | 2025-02-20 | ||||||
| 325 | SRX23311318 | SRP484717 | Illumina NovaSeq 6000 | SRS20187646 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025174 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_138 (21PG49-2) | SAMN39503668 | SAC | 2025-02-20 | ||||||
| 326 | SRX23311319 | SRP484717 | Illumina NovaSeq 6000 | SRS20187648 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025175 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_139 (21PG49-2) | SAMN39503667 | SAC | 2025-02-20 | ||||||
| 327 | SRX23311320 | SRP484717 | Illumina NovaSeq 6000 | SRS20187647 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025176 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_14 (21PG77-1) | SAMN39503666 | SAC | 2025-02-20 | ||||||
| 328 | SRX23311321 | SRP484717 | Illumina NovaSeq 6000 | SRS20187649 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025177 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_140 (21PG49-2) | SAMN39503665 | SAC | 2025-02-20 | ||||||
| 329 | SRX23311322 | SRP484717 | Illumina NovaSeq 6000 | SRS20187650 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025178 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_141 (21PG53-2) | SAMN39503664 | SAC | 2025-02-20 | ||||||
| 330 | SRX23311323 | SRP484717 | Illumina NovaSeq 6000 | SRS20187652 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025179 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_142 (21PG53-2) | SAMN39503663 | SAC | 2025-02-20 | ||||||
| 331 | SRX23311183 | SRP484717 | Illumina NovaSeq 6000 | SRS20187511 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025180 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_143 (21PG53-2) | SAMN39503662 | SAC | 2025-02-20 | ||||||
| 332 | SRX23311184 | SRP484717 | Illumina NovaSeq 6000 | SRS20187512 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025181 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_144 (21PG53-2) | SAMN39503661 | SAC | 2025-02-20 | ||||||
| 333 | SRX23311185 | SRP484717 | Illumina NovaSeq 6000 | SRS20187514 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025182 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_145 (21PG53-2) | SAMN39503660 | SAC | 2025-02-20 | ||||||
| 334 | SRX23311186 | SRP484717 | Illumina NovaSeq 6000 | SRS20187513 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025183 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_146 (21PG53-2) | SAMN39503659 | SAC | 2025-02-20 | ||||||
| 335 | SRX23311187 | SRP484717 | Illumina NovaSeq 6000 | SRS20187518 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025184 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_147 (21PG53-2) | SAMN39503658 | SAC | 2025-02-20 | ||||||
| 336 | SRX23311188 | SRP484717 | Illumina NovaSeq 6000 | SRS20187515 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025185 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_148 (21PG53-2) | SAMN39503657 | SAC | 2025-02-20 | ||||||
| 337 | SRX23311189 | SRP484717 | Illumina NovaSeq 6000 | SRS20187516 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025186 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_149 (21PG53-2) | SAMN39503656 | SAC | 2025-02-20 | ||||||
| 338 | SRX23311190 | SRP484717 | Illumina NovaSeq 6000 | SRS20187519 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025187 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_15 (21PG77-1) | SAMN39503655 | SAC | 2025-02-20 | ||||||
| 339 | SRX23310914 | SRP484717 | Illumina NovaSeq 6000 | SRS20187242 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025188 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_150 (21PG53-2) | SAMN39503654 | SAC | 2025-02-20 | ||||||
| 340 | SRX23310915 | SRP484717 | Illumina NovaSeq 6000 | SRS20187243 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025189 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_151 (21PG53-2) | SAMN39503653 | SAC | 2025-02-20 | ||||||
| 341 | SRX23310916 | SRP484717 | Illumina NovaSeq 6000 | SRS20187244 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025190 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_152 (21PG53-2) | SAMN39503652 | SAC | 2025-02-20 | ||||||
| 342 | SRX23310917 | SRP484717 | Illumina NovaSeq 6000 | SRS20187245 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025191 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_153 (21PG53-2) | SAMN39503651 | SAC | 2025-02-20 | ||||||
| 343 | SRX23310918 | SRP484717 | Illumina NovaSeq 6000 | SRS20187246 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025192 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_154 (21PG53-2) | SAMN39503650 | SAC | 2025-02-20 | ||||||
| 344 | SRX23310919 | SRP484717 | Illumina NovaSeq 6000 | SRS20187247 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025193 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_155 (21PG53-2) | SAMN39503649 | SAC | 2025-02-20 | ||||||
| 345 | SRX23310920 | SRP484717 | Illumina NovaSeq 6000 | SRS20187248 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025194 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_156 (21PG53-2) | SAMN39503648 | SAC | 2025-02-20 | ||||||
| 346 | SRX23310921 | SRP484717 | Illumina NovaSeq 6000 | SRS20187249 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025195 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_157 (21PG53-2) | SAMN39503647 | SAC | 2025-02-20 | ||||||
| 347 | SRX23311153 | SRP484717 | Illumina NovaSeq 6000 | SRS20187481 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025196 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_158 (21PG53-2) | SAMN39503646 | SAC | 2025-02-20 | ||||||
| 348 | SRX23311154 | SRP484717 | Illumina NovaSeq 6000 | SRS20187482 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025197 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_159 (21PG53-2) | SAMN39503645 | SAC | 2025-02-20 | ||||||
| 349 | SRX23311155 | SRP484717 | Illumina NovaSeq 6000 | SRS20187483 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025198 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_16 (21PG77-1) | SAMN39503644 | SAC | 2025-02-20 | ||||||
| 350 | SRX23311156 | SRP484717 | Illumina NovaSeq 6000 | SRS20187484 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025199 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_160 (21PG53-2) | SAMN39503643 | SAC | 2025-02-20 | ||||||
| 351 | SRX23311157 | SRP484717 | Illumina NovaSeq 6000 | SRS20187485 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025200 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_161 (21PG53-2) | SAMN39503642 | SAC | 2025-02-20 | ||||||
| 352 | SRX23311158 | SRP484717 | Illumina NovaSeq 6000 | SRS20187486 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025201 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_162 (21PG53-2) | SAMN39503641 | SAC | 2025-02-20 | ||||||
| 353 | SRX23311159 | SRP484717 | Illumina NovaSeq 6000 | SRS20187487 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025202 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_163 (21PG53-2) | SAMN39503640 | SAC | 2025-02-20 | ||||||
| 354 | SRX23311160 | SRP484717 | Illumina NovaSeq 6000 | SRS20187488 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025203 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_164 (21PG53-2) | SAMN39503639 | SAC | 2025-02-20 | ||||||
| 355 | SRX23311324 | SRP484717 | Illumina NovaSeq 6000 | SRS20187651 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025204 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_165 (21PG53-2) | SAMN39503638 | SAC | 2025-02-20 | ||||||
| 356 | SRX23311325 | SRP484717 | Illumina NovaSeq 6000 | SRS20187653 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025205 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_166 (21PG53-2) | SAMN39503637 | SAC | 2025-02-20 | ||||||
| 357 | SRX23311326 | SRP484717 | Illumina NovaSeq 6000 | SRS20187655 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025206 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_167 (21PG53-2) | SAMN39503636 | SAC | 2025-02-20 | ||||||
| 358 | SRX23311327 | SRP484717 | Illumina NovaSeq 6000 | SRS20187654 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025207 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_168 (21PG32-2) | SAMN39503635 | SAC | 2025-02-20 | ||||||
| 359 | SRX23311328 | SRP484717 | Illumina NovaSeq 6000 | SRS20187661 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025208 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_169 (21PG32-2) | SAMN39503634 | SAC | 2025-02-20 | ||||||
| 360 | SRX23311329 | SRP484717 | Illumina NovaSeq 6000 | SRS20187662 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025209 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_17 (21PG77-1) | SAMN39503633 | SAC | 2025-02-20 | ||||||
| 361 | SRX23311330 | SRP484717 | Illumina NovaSeq 6000 | SRS20187656 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025210 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_170 (21PG32-2) | SAMN39503632 | SAC | 2025-02-20 | ||||||
| 362 | SRX23311331 | SRP484717 | Illumina NovaSeq 6000 | SRS20187659 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025211 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_171 (21PG32-2) | SAMN39503631 | SAC | 2025-02-20 | ||||||
| 363 | SRX23311191 | SRP484717 | Illumina NovaSeq 6000 | SRS20187517 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025212 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_172 (21PG32-2) | SAMN39503630 | SAC | 2025-02-20 | ||||||
| 364 | SRX23311192 | SRP484717 | Illumina NovaSeq 6000 | SRS20187520 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025213 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_173 (21PG32-2) | SAMN39503629 | SAC | 2025-02-20 | ||||||
| 365 | SRX23311193 | SRP484717 | Illumina NovaSeq 6000 | SRS20187521 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025214 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_174 (21PG32-2) | SAMN39503628 | SAC | 2025-02-20 | ||||||
| 366 | SRX23311194 | SRP484717 | Illumina NovaSeq 6000 | SRS20187522 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025215 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_175 (21PG32-2) | SAMN39503627 | SAC | 2025-02-20 | ||||||
| 367 | SRX23311195 | SRP484717 | Illumina NovaSeq 6000 | SRS20187525 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025216 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_176 (21PG32-2) | SAMN39503626 | SAC | 2025-02-20 | ||||||
| 368 | SRX23311196 | SRP484717 | Illumina NovaSeq 6000 | SRS20187524 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025217 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_177 (21PG32-2) | SAMN39503625 | SAC | 2025-02-20 | ||||||
| 369 | SRX23311197 | SRP484717 | Illumina NovaSeq 6000 | SRS20187523 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025218 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_178 (21PG32-2) | SAMN39503624 | SAC | 2025-02-20 | ||||||
| 370 | SRX23311198 | SRP484717 | Illumina NovaSeq 6000 | SRS20187527 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025219 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_179 (21PG32-2) | SAMN39503623 | SAC | 2025-02-20 | ||||||
| 371 | SRX23310922 | SRP484717 | Illumina NovaSeq 6000 | SRS20187250 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025220 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_18 (21PG77-1) | SAMN39503622 | SAC | 2025-02-20 | ||||||
| 372 | SRX23310923 | SRP484717 | Illumina NovaSeq 6000 | SRS20187252 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025221 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_180 (21PG32-2) | SAMN39503621 | SAC | 2025-02-20 | ||||||
| 373 | SRX23310924 | SRP484717 | Illumina NovaSeq 6000 | SRS20187253 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025222 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_19 (21PG77-1) | SAMN39503620 | SAC | 2025-02-20 | ||||||
| 374 | SRX23310925 | SRP484717 | Illumina NovaSeq 6000 | SRS20187251 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025223 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_191 (21PG49-1) | SAMN39503619 | SAC | 2025-02-20 | ||||||
| 375 | SRX23310926 | SRP484717 | Illumina NovaSeq 6000 | SRS20187254 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025224 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_192 (21PG49-1) | SAMN39503618 | SAC | 2025-02-20 | ||||||
| 376 | SRX23310927 | SRP484717 | Illumina NovaSeq 6000 | SRS20187255 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025225 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_193 (21PG57-2) | SAMN39503617 | SAC | 2025-02-20 | ||||||
| 377 | SRX23310928 | SRP484717 | Illumina NovaSeq 6000 | SRS20187256 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025226 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_194 (21PG57-2) | SAMN39503616 | SAC | 2025-02-20 | ||||||
| 378 | SRX23310929 | SRP484717 | Illumina NovaSeq 6000 | SRS20187258 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025227 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_195 (21PG57-2) | SAMN39503615 | SAC | 2025-02-20 | ||||||
| 379 | SRX23311161 | SRP484717 | Illumina NovaSeq 6000 | SRS20187490 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025228 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_196 (21PG57-2) | SAMN39503614 | SAC | 2025-02-20 | ||||||
| 380 | SRX23311163 | SRP484717 | Illumina NovaSeq 6000 | SRS20187492 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025230 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_198 (21PG57-2) | SAMN39503612 | SAC | 2025-02-20 | ||||||
| 381 | SRX23311164 | SRP484717 | Illumina NovaSeq 6000 | SRS20187494 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025231 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_199 (21PG57-2) | SAMN39503611 | SAC | 2025-02-20 | ||||||
| 382 | SRX23311165 | SRP484717 | Illumina NovaSeq 6000 | SRS20187493 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025232 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_2 (21PG50-3) | SAMN39503610 | SAC | 2025-02-20 | ||||||
| 383 | SRX23311166 | SRP484717 | Illumina NovaSeq 6000 | SRS20187491 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025233 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_20 (21PG77-1) | SAMN39503609 | SAC | 2025-02-20 | ||||||
| 384 | SRX23311167 | SRP484717 | Illumina NovaSeq 6000 | SRS20187495 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025234 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_200 (21PG57-2) | SAMN39503608 | SAC | 2025-02-20 | ||||||
| 385 | SRX23311332 | SRP484717 | Illumina NovaSeq 6000 | SRS20187657 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025236 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_202 (21PG57-2) | SAMN39503606 | SAC | 2025-02-20 | ||||||
| 386 | SRX23311333 | SRP484717 | Illumina NovaSeq 6000 | SRS20187658 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025237 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_203 (21PG57-2) | SAMN39503605 | SAC | 2025-02-20 | ||||||
| 387 | SRX23311335 | SRP484717 | Illumina NovaSeq 6000 | SRS20187663 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025239 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_205 (21PG57-2) | SAMN39503603 | SAC | 2025-02-20 | ||||||
| 388 | SRX23311336 | SRP484717 | Illumina NovaSeq 6000 | SRS20187664 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025240 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_206 (21PG57-2) | SAMN39503602 | SAC | 2025-02-20 | ||||||
| 389 | SRX23311337 | SRP484717 | Illumina NovaSeq 6000 | SRS20187665 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025241 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_207 (21PG57-2) | SAMN39503601 | SAC | 2025-02-20 | ||||||
| 390 | SRX23311338 | SRP484717 | Illumina NovaSeq 6000 | SRS20187666 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025242 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_208 (21PG57-2) | SAMN39503600 | SAC | 2025-02-20 | ||||||
| 391 | SRX23311339 | SRP484717 | Illumina NovaSeq 6000 | SRS20187667 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025243 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_209 (21PG75-4) | SAMN39503599 | SAC | 2025-02-20 | ||||||
| 392 | SRX23311199 | SRP484717 | Illumina NovaSeq 6000 | SRS20187526 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025244 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_21 (21PG77-1) | SAMN39503598 | SAC | 2025-02-20 | ||||||
| 393 | SRX23311200 | SRP484717 | Illumina NovaSeq 6000 | SRS20187528 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025245 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_210 (21PG75-4) | SAMN39503597 | SAC | 2025-02-20 | ||||||
| 394 | SRX23311201 | SRP484717 | Illumina NovaSeq 6000 | SRS20187530 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025246 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_211 (21PG75-4) | SAMN39503596 | SAC | 2025-02-20 | ||||||
| 395 | SRX23311202 | SRP484717 | Illumina NovaSeq 6000 | SRS20187532 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025247 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_212 (21PG75-4) | SAMN39503595 | SAC | 2025-02-20 | ||||||
| 396 | SRX23311203 | SRP484717 | Illumina NovaSeq 6000 | SRS20187531 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025248 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_213 (21PG75-4) | SAMN39503594 | SAC | 2025-02-20 | ||||||
| 397 | SRX23311204 | SRP484717 | Illumina NovaSeq 6000 | SRS20187529 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025249 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_214 (21PG75-4) | SAMN39503593 | SAC | 2025-02-20 | ||||||
| 398 | SRX23311205 | SRP484717 | Illumina NovaSeq 6000 | SRS20187534 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025250 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_215 (21PG75-4) | SAMN39503592 | SAC | 2025-02-20 | ||||||
| 399 | SRX23311206 | SRP484717 | Illumina NovaSeq 6000 | SRS20187533 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025251 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_216 (21PG75-4) | SAMN39503591 | SAC | 2025-02-20 | ||||||
| 400 | SRX23311169 | SRP484717 | Illumina NovaSeq 6000 | SRS20187497 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025252 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_217 (21PG75-4) | SAMN39503590 | SAC | 2025-02-20 | ||||||
| 401 | SRX23311170 | SRP484717 | Illumina NovaSeq 6000 | SRS20187498 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025253 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_218 (21PG75-4) | SAMN39503589 | SAC | 2025-02-20 | ||||||
| 402 | SRX23311171 | SRP484717 | Illumina NovaSeq 6000 | SRS20187500 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025254 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_219 (21PG75-4) | SAMN39503588 | SAC | 2025-02-20 | ||||||
| 403 | SRX23311172 | SRP484717 | Illumina NovaSeq 6000 | SRS20187499 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025255 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_22 (21PG77-1) | SAMN39503587 | SAC | 2025-02-20 | ||||||
| 404 | SRX23311260 | SRP484717 | Illumina NovaSeq 6000 | SRS20187592 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025256 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_220 (21PG75-4) | SAMN39503586 | SAC | 2025-02-20 | ||||||
| 405 | SRX23311261 | SRP484717 | Illumina NovaSeq 6000 | SRS20187587 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025257 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_221 (21PG75-4) | SAMN39503585 | SAC | 2025-02-20 | ||||||
| 406 | SRX23311262 | SRP484717 | Illumina NovaSeq 6000 | SRS20187588 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025258 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_222 (21PG75-4) | SAMN39503584 | SAC | 2025-02-20 | ||||||
| 407 | SRX23311263 | SRP484717 | Illumina NovaSeq 6000 | SRS20187598 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025259 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_223 (21PG75-4) | SAMN39503583 | SAC | 2025-02-20 | ||||||
| 408 | SRX23311341 | SRP484717 | Illumina NovaSeq 6000 | SRS20187670 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025261 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_225 (21PG75-4) | SAMN39503581 | SAC | 2025-02-20 | ||||||
| 409 | SRX23311342 | SRP484717 | Illumina NovaSeq 6000 | SRS20187669 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025262 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_226 (21PG75-4) | SAMN39503580 | SAC | 2025-02-20 | ||||||
| 410 | SRX23311343 | SRP484717 | Illumina NovaSeq 6000 | SRS20187671 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025263 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_227 (21PG75-4) | SAMN39503579 | SAC | 2025-02-20 | ||||||
| 411 | SRX23311345 | SRP484717 | Illumina NovaSeq 6000 | SRS20187673 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025265 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_23 (21PG77-1) | SAMN39503577 | SAC | 2025-02-20 | ||||||
| 412 | SRX23311346 | SRP484717 | Illumina NovaSeq 6000 | SRS20187675 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025266 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_24 (21PG77-1) | SAMN39503576 | SAC | 2025-02-20 | ||||||
| 413 | SRX23311347 | SRP484717 | Illumina NovaSeq 6000 | SRS20187676 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025267 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_25 (21PG40-2) | SAMN39503575 | SAC | 2025-02-20 | ||||||
| 414 | SRX23311207 | SRP484717 | Illumina NovaSeq 6000 | SRS20187538 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025268 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_26 (21PG40-2) | SAMN39503574 | SAC | 2025-02-20 | ||||||
| 415 | SRX23311211 | SRP484717 | Illumina NovaSeq 6000 | SRS20187536 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025272 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_269 (21PG76-2) | SAMN39503570 | SAC | 2025-02-20 | ||||||
| 416 | SRX23311212 | SRP484717 | Illumina NovaSeq 6000 | SRS20187540 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025273 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_27 (21PG40-2) | SAMN39503569 | SAC | 2025-02-20 | ||||||
| 417 | SRX23311213 | SRP484717 | Illumina NovaSeq 6000 | SRS20187541 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025274 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_270 (21PG76-2) | SAMN39503568 | SAC | 2025-02-20 | ||||||
| 418 | SRX23311214 | SRP484717 | Illumina NovaSeq 6000 | SRS20187544 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025275 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_271 (21PG76-2) | SAMN39503567 | SAC | 2025-02-20 | ||||||
| 419 | SRX23310935 | SRP484717 | Illumina NovaSeq 6000 | SRS20187263 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025281 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_277 (21PG76-2) | SAMN39503561 | SAC | 2025-02-20 | ||||||
| 420 | SRX23311264 | SRP484717 | Illumina NovaSeq 6000 | SRS20187589 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025284 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_28 (21PG40-2) | SAMN39503558 | SAC | 2025-02-20 | ||||||
| 421 | SRX23311266 | SRP484717 | Illumina NovaSeq 6000 | SRS20187594 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025286 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_281 (21PG45-2) | SAMN39503556 | SAC | 2025-02-20 | ||||||
| 422 | SRX23311348 | SRP484717 | Illumina NovaSeq 6000 | SRS20187674 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025292 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_287 (21PG45-2) | SAMN39503550 | SAC | 2025-02-20 | ||||||
| 423 | SRX23311350 | SRP484717 | Illumina NovaSeq 6000 | SRS20187677 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025294 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_289 (21PG35-1) | SAMN39503548 | SAC | 2025-02-20 | ||||||
| 424 | SRX23311351 | SRP484717 | Illumina NovaSeq 6000 | SRS20187678 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025295 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_29 (21PG40-2) | SAMN39503547 | SAC | 2025-02-20 | ||||||
| 425 | SRX23311352 | SRP484717 | Illumina NovaSeq 6000 | SRS20187680 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025296 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_290 (21PG35-1) | SAMN39503546 | SAC | 2025-02-20 | ||||||
| 426 | SRX23311353 | SRP484717 | Illumina NovaSeq 6000 | SRS20187681 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025297 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_291 (21PG35-1) | SAMN39503545 | SAC | 2025-02-20 | ||||||
| 427 | SRX23311216 | SRP484717 | Illumina NovaSeq 6000 | SRS20187542 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025301 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_295 (21PG35-1) | SAMN39503541 | SAC | 2025-02-20 | ||||||
| 428 | SRX23311217 | SRP484717 | Illumina NovaSeq 6000 | SRS20187543 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025302 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_296 (21PG65-1) | SAMN39503540 | SAC | 2025-02-20 | ||||||
| 429 | SRX23311218 | SRP484717 | Illumina NovaSeq 6000 | SRS20187546 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025303 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_297 (21PG65-1) | SAMN39503539 | SAC | 2025-02-20 | ||||||
| 430 | SRX23311219 | SRP484717 | Illumina NovaSeq 6000 | SRS20187547 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025304 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_298 (21PG65-1) | SAMN39503538 | SAC | 2025-02-20 | ||||||
| 431 | SRX23311220 | SRP484717 | Illumina NovaSeq 6000 | SRS20187548 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025305 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_299 (21PG65-1) | SAMN39503537 | SAC | 2025-02-20 | ||||||
| 432 | SRX23311221 | SRP484717 | Illumina NovaSeq 6000 | SRS20187549 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025306 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_3 (21PG50-3) | SAMN39503536 | SAC | 2025-02-20 | ||||||
| 433 | SRX23311222 | SRP484717 | Illumina NovaSeq 6000 | SRS20187551 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025307 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_30 (21PG40-2) | SAMN39503535 | SAC | 2025-02-20 | ||||||
| 434 | SRX23310938 | SRP484717 | Illumina NovaSeq 6000 | SRS20187265 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025308 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_300 (21PG65-1) | SAMN39503534 | SAC | 2025-02-20 | ||||||
| 435 | SRX23310939 | SRP484717 | Illumina NovaSeq 6000 | SRS20187267 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025309 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_301 (21PG65-1) | SAMN39503533 | SAC | 2025-02-20 | ||||||
| 436 | SRX23310940 | SRP484717 | Illumina NovaSeq 6000 | SRS20187269 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025310 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_302 (21PG65-1) | SAMN39503532 | SAC | 2025-02-20 | ||||||
| 437 | SRX23310941 | SRP484717 | Illumina NovaSeq 6000 | SRS20187268 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025311 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_303 (21PG65-1) | SAMN39503531 | SAC | 2025-02-20 | ||||||
| 438 | SRX23310942 | SRP484717 | Illumina NovaSeq 6000 | SRS20187270 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025312 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_304 (21PG65-1) | SAMN39503530 | SAC | 2025-02-20 | ||||||
| 439 | SRX23310943 | SRP484717 | Illumina NovaSeq 6000 | SRS20187271 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025313 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_305 (21PG65-1) | SAMN39503529 | SAC | 2025-02-20 | ||||||
| 440 | SRX23310944 | SRP484717 | Illumina NovaSeq 6000 | SRS20187272 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025314 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_306 (21PG65-1) | SAMN39503528 | SAC | 2025-02-20 | ||||||
| 441 | SRX23310945 | SRP484717 | Illumina NovaSeq 6000 | SRS20187273 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025315 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_307 (21PG65-1) | SAMN39503527 | SAC | 2025-02-20 | ||||||
| 442 | SRX23311272 | SRP484717 | Illumina NovaSeq 6000 | SRS20187602 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025316 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_308 (21PG65-1) | SAMN39503526 | SAC | 2025-02-20 | ||||||
| 443 | SRX23311273 | SRP484717 | Illumina NovaSeq 6000 | SRS20187601 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025317 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_309 (21PG65-1) | SAMN39503525 | SAC | 2025-02-20 | ||||||
| 444 | SRX23311274 | SRP484717 | Illumina NovaSeq 6000 | SRS20187600 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025318 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_31 (21PG40-2) | SAMN39503524 | SAC | 2025-02-20 | ||||||
| 445 | SRX23311275 | SRP484717 | Illumina NovaSeq 6000 | SRS20187603 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025319 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_310 (21PG65-1) | SAMN39503523 | SAC | 2025-02-20 | ||||||
| 446 | SRX23311276 | SRP484717 | Illumina NovaSeq 6000 | SRS20187604 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025320 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_311 (21PG65-1) | SAMN39503522 | SAC | 2025-02-20 | ||||||
| 447 | SRX23311277 | SRP484717 | Illumina NovaSeq 6000 | SRS20187605 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025321 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_312 (21PG65-1) | SAMN39503521 | SAC | 2025-02-20 | ||||||
| 448 | SRX23311278 | SRP484717 | Illumina NovaSeq 6000 | SRS20187606 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025322 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_313 (21PG65-1) | SAMN39503520 | SAC | 2025-02-20 | ||||||
| 449 | SRX23311279 | SRP484717 | Illumina NovaSeq 6000 | SRS20187607 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025323 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_314 (21PG65-2) | SAMN39503519 | SAC | 2025-02-20 | ||||||
| 450 | SRX23311356 | SRP484717 | Illumina NovaSeq 6000 | SRS20187682 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025324 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_315 (21PG65-2) | SAMN39503518 | SAC | 2025-02-20 | ||||||
| 451 | SRX23311357 | SRP484717 | Illumina NovaSeq 6000 | SRS20187686 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025325 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_316 (21PG65-2) | SAMN39503517 | SAC | 2025-02-20 | ||||||
| 452 | SRX23311358 | SRP484717 | Illumina NovaSeq 6000 | SRS20187685 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025326 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_317 (21PG65-2) | SAMN39503516 | SAC | 2025-02-20 | ||||||
| 453 | SRX23311359 | SRP484717 | Illumina NovaSeq 6000 | SRS20187687 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025327 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_318 (21PG65-2) | SAMN39503515 | SAC | 2025-02-20 | ||||||
| 454 | SRX23311360 | SRP484717 | Illumina NovaSeq 6000 | SRS20187688 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025328 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_319 (21PG65-2) | SAMN39503514 | SAC | 2025-02-20 | ||||||
| 455 | SRX23311361 | SRP484717 | Illumina NovaSeq 6000 | SRS20187690 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025329 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_32 (21PG40-2) | SAMN39503513 | SAC | 2025-02-20 | ||||||
| 456 | SRX23311362 | SRP484717 | Illumina NovaSeq 6000 | SRS20187689 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025330 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_320 (21PG65-2) | SAMN39503512 | SAC | 2025-02-20 | ||||||
| 457 | SRX23311363 | SRP484717 | Illumina NovaSeq 6000 | SRS20187691 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025331 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_321 (21PG65-2) | SAMN39503511 | SAC | 2025-02-20 | ||||||
| 458 | SRX23311223 | SRP484717 | Illumina NovaSeq 6000 | SRS20187550 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025332 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_322 (21PG65-2) | SAMN39503510 | SAC | 2025-02-20 | ||||||
| 459 | SRX23311224 | SRP484717 | Illumina NovaSeq 6000 | SRS20187553 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025333 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_323 (20PG3-1) | SAMN39503509 | SAC | 2025-02-20 | ||||||
| 460 | SRX23310946 | SRP484717 | Illumina NovaSeq 6000 | SRS20187274 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025340 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_33 (21PG40-2) | SAMN39503502 | SAC | 2025-02-20 | ||||||
| 461 | SRX23310947 | SRP484717 | Illumina NovaSeq 6000 | SRS20187275 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025341 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_330 (20PG3-1) | SAMN39503501 | SAC | 2025-02-20 | ||||||
| 462 | SRX23310948 | SRP484717 | Illumina NovaSeq 6000 | SRS20187276 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025342 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_331 (20PG3-1) | SAMN39503500 | SAC | 2025-02-20 | ||||||
| 463 | SRX23310953 | SRP484717 | Illumina NovaSeq 6000 | SRS20187281 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025347 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_336 (20PG3-1) | SAMN39503495 | SAC | 2025-02-20 | ||||||
| 464 | SRX23311282 | SRP484717 | Illumina NovaSeq 6000 | SRS20187609 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025350 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_339 (20PG3-1) | SAMN39503492 | SAC | 2025-02-20 | ||||||
| 465 | SRX23311283 | SRP484717 | Illumina NovaSeq 6000 | SRS20187611 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025351 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_34 (21PG40-2) | SAMN39503491 | SAC | 2025-02-20 | ||||||
| 466 | SRX23311284 | SRP484717 | Illumina NovaSeq 6000 | SRS20187612 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025352 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_340 (20PG3-1) | SAMN39503490 | SAC | 2025-02-20 | ||||||
| 467 | SRX23311286 | SRP484717 | Illumina NovaSeq 6000 | SRS20187614 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025354 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_342 (20PG3-1) | SAMN39503488 | SAC | 2025-02-20 | ||||||
| 468 | SRX23311366 | SRP484717 | Illumina NovaSeq 6000 | SRS20187693 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025358 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_346 (20PG4-3) | SAMN39503484 | SAC | 2025-02-20 | ||||||
| 469 | SRX23311367 | SRP484717 | Illumina NovaSeq 6000 | SRS20187695 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025359 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_347 (20PG4-3) | SAMN39503483 | SAC | 2025-02-20 | ||||||
| 470 | SRX23311368 | SRP484717 | Illumina NovaSeq 6000 | SRS20187697 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025360 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_348 (20PG4-3) | SAMN39503482 | SAC | 2025-02-20 | ||||||
| 471 | SRX23311369 | SRP484717 | Illumina NovaSeq 6000 | SRS20187696 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025361 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_349 (20PG4-3) | SAMN39503481 | SAC | 2025-02-20 | ||||||
| 472 | SRX23311370 | SRP484717 | Illumina NovaSeq 6000 | SRS20187700 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025362 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_35 (21PG40-2) | SAMN39503480 | SAC | 2025-02-20 | ||||||
| 473 | SRX23311371 | SRP484717 | Illumina NovaSeq 6000 | SRS20187702 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025363 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_350 (20PG4-3) | SAMN39503479 | SAC | 2025-02-20 | ||||||
| 474 | SRX23311231 | SRP484717 | Illumina NovaSeq 6000 | SRS20187560 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025364 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_351 (20PG4-3) | SAMN39503478 | SAC | 2025-02-20 | ||||||
| 475 | SRX23311232 | SRP484717 | Illumina NovaSeq 6000 | SRS20187566 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025365 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_352 (20PG4-3) | SAMN39503477 | SAC | 2025-02-20 | ||||||
| 476 | SRX23311233 | SRP484717 | Illumina NovaSeq 6000 | SRS20187559 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025366 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_353 (20PG4-3) | SAMN39503476 | SAC | 2025-02-20 | ||||||
| 477 | SRX23311234 | SRP484717 | Illumina NovaSeq 6000 | SRS20187561 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025367 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_354 (20PG4-3) | SAMN39503475 | SAC | 2025-02-20 | ||||||
| 478 | SRX23311235 | SRP484717 | Illumina NovaSeq 6000 | SRS20187562 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025368 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_355 (20PG4-3) | SAMN39503474 | SAC | 2025-02-20 | ||||||
| 479 | SRX23311236 | SRP484717 | Illumina NovaSeq 6000 | SRS20187567 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025369 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_356 (20PG4-3) | SAMN39503473 | SAC | 2025-02-20 | ||||||
| 480 | SRX23311237 | SRP484717 | Illumina NovaSeq 6000 | SRS20187563 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025370 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_357 (20PG4-3) | SAMN39503472 | SAC | 2025-02-20 | ||||||
| 481 | SRX23311238 | SRP484717 | Illumina NovaSeq 6000 | SRS20187564 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025371 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_358 (20PG4-3) | SAMN39503471 | SAC | 2025-02-20 | ||||||
| 482 | SRX23310954 | SRP484717 | Illumina NovaSeq 6000 | SRS20187282 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025372 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_359 (21PG33-2) | SAMN39503470 | SAC | 2025-02-20 | ||||||
| 483 | SRX23310955 | SRP484717 | Illumina NovaSeq 6000 | SRS20187285 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025373 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_36 (21PG40-2) | SAMN39503469 | SAC | 2025-02-20 | ||||||
| 484 | SRX23310956 | SRP484717 | Illumina NovaSeq 6000 | SRS20187283 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025374 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_360 (21PG33-2) | SAMN39503468 | SAC | 2025-02-20 | ||||||
| 485 | SRX23310957 | SRP484717 | Illumina NovaSeq 6000 | SRS20187284 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025375 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_361 (21PG33-2) | SAMN39503467 | SAC | 2025-02-20 | ||||||
| 486 | SRX23310958 | SRP484717 | Illumina NovaSeq 6000 | SRS20187286 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025376 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_362 (21PG33-2) | SAMN39503466 | SAC | 2025-02-20 | ||||||
| 487 | SRX23310959 | SRP484717 | Illumina NovaSeq 6000 | SRS20187288 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025377 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_363 (21PG33-2) | SAMN39503465 | SAC | 2025-02-20 | ||||||
| 488 | SRX23310960 | SRP484717 | Illumina NovaSeq 6000 | SRS20187287 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025378 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_364 (21PG33-2) | SAMN39503464 | SAC | 2025-02-20 | ||||||
| 489 | SRX23310961 | SRP484717 | Illumina NovaSeq 6000 | SRS20187289 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025379 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_365 (21PG33-2) | SAMN39503463 | SAC | 2025-02-20 | ||||||
| 490 | SRX23311288 | SRP484717 | Illumina NovaSeq 6000 | SRS20187615 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025380 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_366 (21PG33-2) | SAMN39503462 | SAC | 2025-02-20 | ||||||
| 491 | SRX23311291 | SRP484717 | Illumina NovaSeq 6000 | SRS20187619 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025383 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_369 (21PG33-2) | SAMN39503459 | SAC | 2025-02-20 | ||||||
| 492 | SRX23311292 | SRP484717 | Illumina NovaSeq 6000 | SRS20187620 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025384 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_37 (21PG40-2) | SAMN39503458 | SAC | 2025-02-20 | ||||||
| 493 | SRX23311293 | SRP484717 | Illumina NovaSeq 6000 | SRS20187621 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025385 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_370 (21PG33-2) | SAMN39503457 | SAC | 2025-02-20 | ||||||
| 494 | SRX23311294 | SRP484717 | Illumina NovaSeq 6000 | SRS20187626 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025386 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_371 (21PG33-2) | SAMN39503456 | SAC | 2025-02-20 | ||||||
| 495 | SRX23311295 | SRP484717 | Illumina NovaSeq 6000 | SRS20187623 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025387 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_372 (21PG33-2) | SAMN39503455 | SAC | 2025-02-20 | ||||||
| 496 | SRX23311373 | SRP484717 | Illumina NovaSeq 6000 | SRS20187699 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025389 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_39 (21PG40-2) | SAMN39503453 | SAC | 2025-02-20 | ||||||
| 497 | SRX23311374 | SRP484717 | Illumina NovaSeq 6000 | SRS20187701 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025390 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_4 (21PG50-3) | SAMN39503452 | SAC | 2025-02-20 | ||||||
| 498 | SRX23311376 | SRP484717 | Illumina NovaSeq 6000 | SRS20187704 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025392 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_41 (21PG33-1) | SAMN39503450 | SAC | 2025-02-20 | ||||||
| 499 | SRX23311377 | SRP484717 | Illumina NovaSeq 6000 | SRS20187705 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025393 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_42 (21PG33-1) | SAMN39503449 | SAC | 2025-02-20 | ||||||
| 500 | SRX23311378 | SRP484717 | Illumina NovaSeq 6000 | SRS20187706 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025394 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_43 (21PG33-1) | SAMN39503448 | SAC | 2025-02-20 | ||||||
| 501 | SRX23311379 | SRP484717 | Illumina NovaSeq 6000 | SRS20187709 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025395 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_44 (21PG33-1) | SAMN39503447 | SAC | 2025-02-20 | ||||||
| 502 | SRX23311239 | SRP484717 | Illumina NovaSeq 6000 | SRS20187573 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025396 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_45 (21PG33-1) | SAMN39503446 | SAC | 2025-02-20 | ||||||
| 503 | SRX23311241 | SRP484717 | Illumina NovaSeq 6000 | SRS20187568 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025398 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_47 (21PG33-1) | SAMN39503444 | SAC | 2025-02-20 | ||||||
| 504 | SRX23311242 | SRP484717 | Illumina NovaSeq 6000 | SRS20187569 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025399 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_48 (21PG33-1) | SAMN39503443 | SAC | 2025-02-20 | ||||||
| 505 | SRX23311243 | SRP484717 | Illumina NovaSeq 6000 | SRS20187571 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025400 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_49 (21PG33-1) | SAMN39503442 | SAC | 2025-02-20 | ||||||
| 506 | SRX23311244 | SRP484717 | Illumina NovaSeq 6000 | SRS20187570 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025401 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_5 (21PG50-3) | SAMN39503441 | SAC | 2025-02-20 | ||||||
| 507 | SRX23311245 | SRP484717 | Illumina NovaSeq 6000 | SRS20187572 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025402 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_50 (21PG33-1) | SAMN39503440 | SAC | 2025-02-20 | ||||||
| 508 | SRX23311246 | SRP484717 | Illumina NovaSeq 6000 | SRS20187574 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025403 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_51 (21PG33-1) | SAMN39503439 | SAC | 2025-02-20 | ||||||
| 509 | SRX23310962 | SRP484717 | Illumina NovaSeq 6000 | SRS20187291 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025404 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_52 (21PG33-1) | SAMN39503438 | SAC | 2025-02-20 | ||||||
| 510 | SRX23310963 | SRP484717 | Illumina NovaSeq 6000 | SRS20187290 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025405 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_53 (21PG33-1) | SAMN39503437 | SAC | 2025-02-20 | ||||||
| 511 | SRX23310964 | SRP484717 | Illumina NovaSeq 6000 | SRS20187293 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025406 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_54 (21PG33-1) | SAMN39503436 | SAC | 2025-02-20 | ||||||
| 512 | SRX23310965 | SRP484717 | Illumina NovaSeq 6000 | SRS20187292 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025407 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_55 (21PG33-1) | SAMN39503435 | SAC | 2025-02-20 | ||||||
| 513 | SRX23310966 | SRP484717 | Illumina NovaSeq 6000 | SRS20187294 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025408 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_56 (21PG33-1) | SAMN39503434 | SAC | 2025-02-20 | ||||||
| 514 | SRX23310967 | SRP484717 | Illumina NovaSeq 6000 | SRS20187295 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025409 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_57 (21PG33-1) | SAMN39503433 | SAC | 2025-02-20 | ||||||
| 515 | SRX23310968 | SRP484717 | Illumina NovaSeq 6000 | SRS20187296 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025410 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_58 (21PG33-1) | SAMN39503432 | SAC | 2025-02-20 | ||||||
| 516 | SRX23311296 | SRP484717 | Illumina NovaSeq 6000 | SRS20187622 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025412 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_6 (21PG50-3) | SAMN39503430 | SAC | 2025-02-20 | ||||||
| 517 | SRX23311297 | SRP484717 | Illumina NovaSeq 6000 | SRS20187624 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025413 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_60 (21PG33-1) | SAMN39503429 | SAC | 2025-02-20 | ||||||
| 518 | SRX23311298 | SRP484717 | Illumina NovaSeq 6000 | SRS20187627 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025414 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_61 (21PG33-1) | SAMN39503428 | SAC | 2025-02-20 | ||||||
| 519 | SRX23311299 | SRP484717 | Illumina NovaSeq 6000 | SRS20187625 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025415 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_62 (21PG33-1) | SAMN39503427 | SAC | 2025-02-20 | ||||||
| 520 | SRX23311383 | SRP484717 | Illumina NovaSeq 6000 | SRS20187711 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025423 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_7 (21PG50-3) | SAMN39503419 | SAC | 2025-02-20 | ||||||
| 521 | SRX23311253 | SRP484717 | Illumina NovaSeq 6000 | SRS20187581 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025434 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_8 (21PG77-1) | SAMN39503408 | SAC | 2025-02-20 | ||||||
| 522 | SRX23311254 | SRP484717 | Illumina NovaSeq 6000 | SRS20187582 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025435 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_80 (21PG42-2) | SAMN39503407 | SAC | 2025-02-20 | ||||||
| 523 | SRX23310971 | SRP484717 | Illumina NovaSeq 6000 | SRS20187299 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025437 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_82 (21PG55-1) | SAMN39503405 | SAC | 2025-02-20 | ||||||
| 524 | SRX23310972 | SRP484717 | Illumina NovaSeq 6000 | SRS20187300 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025438 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_83 (21PG55-1) | SAMN39503404 | SAC | 2025-02-20 | ||||||
| 525 | SRX23310973 | SRP484717 | Illumina NovaSeq 6000 | SRS20187301 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025439 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_84 (21PG55-1) | SAMN39503403 | SAC | 2025-02-20 | ||||||
| 526 | SRX23310974 | SRP484717 | Illumina NovaSeq 6000 | SRS20187302 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025440 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_85 (21PG55-1) | SAMN39503402 | SAC | 2025-02-20 | ||||||
| 527 | SRX23310975 | SRP484717 | Illumina NovaSeq 6000 | SRS20187305 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025441 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_86 (21PG55-1) | SAMN39503401 | SAC | 2025-02-20 | ||||||
| 528 | SRX23310976 | SRP484717 | Illumina NovaSeq 6000 | SRS20187304 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025442 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_87 (21PG55-1) | SAMN39503400 | SAC | 2025-02-20 | ||||||
| 529 | SRX23310977 | SRP484717 | Illumina NovaSeq 6000 | SRS20187303 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025443 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_88 (21PG55-1) | SAMN39503399 | SAC | 2025-02-20 | ||||||
| 530 | SRX23311304 | SRP484717 | Illumina NovaSeq 6000 | SRS20187631 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025444 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_89 (21PG55-1) | SAMN39503398 | SAC | 2025-02-20 | ||||||
| 531 | SRX23311305 | SRP484717 | Illumina NovaSeq 6000 | SRS20187634 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025445 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_9 (21PG77-1) | SAMN39503397 | SAC | 2025-02-20 | ||||||
| 532 | SRX23311306 | SRP484717 | Illumina NovaSeq 6000 | SRS20187632 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025446 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_90 (21PG55-1) | SAMN39503396 | SAC | 2025-02-20 | ||||||
| 533 | SRX23311307 | SRP484717 | Illumina NovaSeq 6000 | SRS20187637 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025447 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_91 (21PG55-1) | SAMN39503395 | SAC | 2025-02-20 | ||||||
| 534 | SRX23311309 | SRP484717 | Illumina NovaSeq 6000 | SRS20187636 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025449 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_93 (21PG55-1) | SAMN39503393 | SAC | 2025-02-20 | ||||||
| 535 | SRX23311310 | SRP484717 | Illumina NovaSeq 6000 | SRS20187638 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025450 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_94 (21PG55-1) | SAMN39503392 | SAC | 2025-02-20 | ||||||
| 536 | SRX23311311 | SRP484717 | Illumina NovaSeq 6000 | SRS20187639 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025451 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_95 (21PG55-1) | SAMN39503391 | SAC | 2025-02-20 | ||||||
| 537 | SRX23311388 | SRP484717 | Illumina NovaSeq 6000 | SRS20187716 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025452 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_96 (21PG55-1) | SAMN39503390 | SAC | 2025-02-20 | ||||||
| 538 | SRX23311389 | SRP484717 | Illumina NovaSeq 6000 | SRS20187718 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025453 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_97 (21PG55-3) | SAMN39503389 | SAC | 2025-02-20 | ||||||
| 539 | SRX23311390 | SRP484717 | Illumina NovaSeq 6000 | SRS20187720 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025454 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_98 (21PG55-3) | SAMN39503388 | SAC | 2025-02-20 | ||||||
| 540 | SRX23311391 | SRP484717 | Illumina NovaSeq 6000 | SRS20187717 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025455 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_99 (21PG55-3) | SAMN39503387 | SAC | 2025-02-20 |
comments¶
In [ ]:
library.loc[:,'comment'] = 'no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper'
save complete file with correct columns¶
In [ ]:
library_file_complete = library[library_cols]
library_file_complete.to_csv(library_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
# view
display_df(library_file_complete)
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRX23310999 | SRP484717 | Illumina NovaSeq 6000 | SRS20187327 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024795 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_1 (21PG50-2) | SAMN39504047 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 1 | SRX23311255 | SRP484717 | Illumina NovaSeq 6000 | SRS20187583 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024796 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_10 (21PG39-1) | SAMN39504046 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 2 | SRX23311256 | SRP484717 | Illumina NovaSeq 6000 | SRS20187584 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024797 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_100 (21PG55-2) | SAMN39504045 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 3 | SRX23311257 | SRP484717 | Illumina NovaSeq 6000 | SRS20187585 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024798 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_101 (21PG55-2) | SAMN39504044 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 4 | SRX23311258 | SRP484717 | Illumina NovaSeq 6000 | SRS20187586 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024799 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_102 (21PG55-2) | SAMN39504043 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 5 | SRX23311259 | SRP484717 | Illumina NovaSeq 6000 | SRS20187590 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024800 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_103 (21PG55-2) | SAMN39504042 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 6 | SRX23310825 | SRP484717 | Illumina NovaSeq 6000 | SRS20187153 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024801 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_104 (21PG55-2) | SAMN39504041 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 7 | SRX23310826 | SRP484717 | Illumina NovaSeq 6000 | SRS20187154 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024802 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_105 (21PG55-2) | SAMN39504040 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 8 | SRX23310827 | SRP484717 | Illumina NovaSeq 6000 | SRS20187157 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024803 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_106 (21PG55-2) | SAMN39504039 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 9 | SRX23311000 | SRP484717 | Illumina NovaSeq 6000 | SRS20187330 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024804 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_107 (21PG55-2) | SAMN39504038 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 10 | SRX23311001 | SRP484717 | Illumina NovaSeq 6000 | SRS20187329 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024805 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_108 (21PG55-2) | SAMN39504037 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 11 | SRX23311002 | SRP484717 | Illumina NovaSeq 6000 | SRS20187328 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024806 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_109 (21PG34-1) | SAMN39504036 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 12 | SRX23311003 | SRP484717 | Illumina NovaSeq 6000 | SRS20187331 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024807 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_11 (21PG39-1) | SAMN39504035 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 13 | SRX23311004 | SRP484717 | Illumina NovaSeq 6000 | SRS20187333 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024808 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_110 (21PG34-1) | SAMN39504034 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 14 | SRX23311006 | SRP484717 | Illumina NovaSeq 6000 | SRS20187334 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024810 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_112 (21PG34-1) | SAMN39504032 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 15 | SRX23311007 | SRP484717 | Illumina NovaSeq 6000 | SRS20187335 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024811 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_113 (21PG37-2) | SAMN39504031 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 16 | SRX23311392 | SRP484717 | Illumina NovaSeq 6000 | SRS20187719 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024812 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_114 (21PG37-2) | SAMN39504030 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 17 | SRX23311393 | SRP484717 | Illumina NovaSeq 6000 | SRS20187721 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024813 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_115 (21PG37-2) | SAMN39504029 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 18 | SRX23311394 | SRP484717 | Illumina NovaSeq 6000 | SRS20187722 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024814 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_116 (21PG37-2) | SAMN39504028 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 19 | SRX23311395 | SRP484717 | Illumina NovaSeq 6000 | SRS20187724 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024815 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_117 (21PG37-2) | SAMN39504027 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 20 | SRX23311397 | SRP484717 | Illumina NovaSeq 6000 | SRS20187725 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024817 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_119 (21PG37-2) | SAMN39504025 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 21 | SRX23311398 | SRP484717 | Illumina NovaSeq 6000 | SRS20187726 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024818 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_12 (21PG39-1) | SAMN39504024 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 22 | SRX23311399 | SRP484717 | Illumina NovaSeq 6000 | SRS20187727 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024819 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_120 (21PG37-2) | SAMN39504023 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 23 | SRX23310828 | SRP484717 | Illumina NovaSeq 6000 | SRS20187156 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024820 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_121 (21PG37-2) | SAMN39504022 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 24 | SRX23310829 | SRP484717 | Illumina NovaSeq 6000 | SRS20187158 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024821 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_122 (21PG37-2) | SAMN39504021 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 25 | SRX23310831 | SRP484717 | Illumina NovaSeq 6000 | SRS20187159 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024823 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_124 (21PG37-3) | SAMN39504019 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 26 | SRX23310832 | SRP484717 | Illumina NovaSeq 6000 | SRS20187160 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024824 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_125 (21PG37-3) | SAMN39504018 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 27 | SRX23310833 | SRP484717 | Illumina NovaSeq 6000 | SRS20187161 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024825 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_126 (21PG37-3) | SAMN39504017 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 28 | SRX23310834 | SRP484717 | Illumina NovaSeq 6000 | SRS20187163 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024826 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_127 (21PG37-3) | SAMN39504016 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 29 | SRX23310835 | SRP484717 | Illumina NovaSeq 6000 | SRS20187162 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024827 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_128 (21PG37-3) | SAMN39504015 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 30 | SRX23311008 | SRP484717 | Illumina NovaSeq 6000 | SRS20187336 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024828 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_129 (21PG37-3) | SAMN39504014 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 31 | SRX23311009 | SRP484717 | Illumina NovaSeq 6000 | SRS20187337 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024829 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_13 (21PG39-1) | SAMN39504013 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 32 | SRX23311010 | SRP484717 | Illumina NovaSeq 6000 | SRS20187338 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024830 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_130 (21PG37-3) | SAMN39504012 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 33 | SRX23311011 | SRP484717 | Illumina NovaSeq 6000 | SRS20187339 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024831 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_131 (21PG37-3) | SAMN39504011 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 34 | SRX23311012 | SRP484717 | Illumina NovaSeq 6000 | SRS20187340 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024832 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_132 (21PG37-3) | SAMN39504010 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 35 | SRX23311013 | SRP484717 | Illumina NovaSeq 6000 | SRS20187341 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024833 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_133 (21PG37-3) | SAMN39504009 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 36 | SRX23311014 | SRP484717 | Illumina NovaSeq 6000 | SRS20187342 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024834 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_134 (21PG37-3) | SAMN39504008 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 37 | SRX23311015 | SRP484717 | Illumina NovaSeq 6000 | SRS20187343 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024835 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_135 (21PG37-3) | SAMN39504007 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 38 | SRX23311400 | SRP484717 | Illumina NovaSeq 6000 | SRS20187728 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024836 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_136 (21PG37-3) | SAMN39504006 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 39 | SRX23311402 | SRP484717 | Illumina NovaSeq 6000 | SRS20187730 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024838 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_138 (21PG37-3) | SAMN39504004 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 40 | SRX23311404 | SRP484717 | Illumina NovaSeq 6000 | SRS20187731 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024840 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_14 (21PG39-1) | SAMN39504002 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 41 | SRX23311405 | SRP484717 | Illumina NovaSeq 6000 | SRS20187733 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024841 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_140 (21PG37-3) | SAMN39504001 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 42 | SRX23311406 | SRP484717 | Illumina NovaSeq 6000 | SRS20187732 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024842 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_141 (21PG37-3) | SAMN39504000 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 43 | SRX23310985 | SRP484717 | Illumina NovaSeq 6000 | SRS20187311 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024851 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_15 (21PG39-1) | SAMN39503991 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 44 | SRX23310837 | SRP484717 | Illumina NovaSeq 6000 | SRS20187165 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024853 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_151 (21PG55-2) | SAMN39503989 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 45 | SRX23310840 | SRP484717 | Illumina NovaSeq 6000 | SRS20187168 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024856 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_154 (21PG53-1) | SAMN39503986 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 46 | SRX23310842 | SRP484717 | Illumina NovaSeq 6000 | SRS20187170 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024858 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_156 (21PG55-2) | SAMN39503984 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 47 | SRX23310843 | SRP484717 | Illumina NovaSeq 6000 | SRS20187171 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024859 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_157 (21PG53-1) | SAMN39503983 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 48 | SRX23311016 | SRP484717 | Illumina NovaSeq 6000 | SRS20187344 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024860 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_158 (21PG53-1) | SAMN39503982 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 49 | SRX23311017 | SRP484717 | Illumina NovaSeq 6000 | SRS20187345 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024861 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_159 (21PG53-1) | SAMN39503981 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 50 | SRX23311018 | SRP484717 | Illumina NovaSeq 6000 | SRS20187346 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024862 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_16 (21PG39-1) | SAMN39503980 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 51 | SRX23311019 | SRP484717 | Illumina NovaSeq 6000 | SRS20187347 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024863 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_160 (21PG53-1) | SAMN39503979 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 52 | SRX23311020 | SRP484717 | Illumina NovaSeq 6000 | SRS20187348 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024864 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_161 (21PG53-1) | SAMN39503978 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 53 | SRX23311021 | SRP484717 | Illumina NovaSeq 6000 | SRS20187350 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024865 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_162 (21PG53-1) | SAMN39503977 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 54 | SRX23311022 | SRP484717 | Illumina NovaSeq 6000 | SRS20187352 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024866 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_163 (21PG53-1) | SAMN39503976 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 55 | SRX23311023 | SRP484717 | Illumina NovaSeq 6000 | SRS20187351 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024867 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_164 (21PG53-1) | SAMN39503975 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 56 | SRX23311408 | SRP484717 | Illumina NovaSeq 6000 | SRS20187736 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024868 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_165 (21PG53-1) | SAMN39503974 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 57 | SRX23311409 | SRP484717 | Illumina NovaSeq 6000 | SRS20187738 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024869 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_166 (21PG53-1) | SAMN39503973 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 58 | SRX23311410 | SRP484717 | Illumina NovaSeq 6000 | SRS20187737 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024870 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_167 (21PG53-1) | SAMN39503972 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 59 | SRX23311411 | SRP484717 | Illumina NovaSeq 6000 | SRS20187741 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024871 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_168 (21PG53-1) | SAMN39503971 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 60 | SRX23311412 | SRP484717 | Illumina NovaSeq 6000 | SRS20187742 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024872 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_169 (21PG53-1) | SAMN39503970 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 61 | SRX23311413 | SRP484717 | Illumina NovaSeq 6000 | SRS20187740 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024873 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_17 (21PG39-2) | SAMN39503969 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 62 | SRX23311414 | SRP484717 | Illumina NovaSeq 6000 | SRS20187739 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024874 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_170 (21PG53-1) | SAMN39503968 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 63 | SRX23310987 | SRP484717 | Illumina NovaSeq 6000 | SRS20187315 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024877 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_173 (21PG77-2) | SAMN39503965 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 64 | SRX23310988 | SRP484717 | Illumina NovaSeq 6000 | SRS20187316 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024878 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_174 (21PG77-2) | SAMN39503964 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 65 | SRX23310990 | SRP484717 | Illumina NovaSeq 6000 | SRS20187318 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024880 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_176 (21PG77-2) | SAMN39503962 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 66 | SRX23310991 | SRP484717 | Illumina NovaSeq 6000 | SRS20187319 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024881 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_177 (21PG77-2) | SAMN39503961 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 67 | SRX23310992 | SRP484717 | Illumina NovaSeq 6000 | SRS20187321 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024882 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_178 (21PG77-2) | SAMN39503960 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 68 | SRX23310993 | SRP484717 | Illumina NovaSeq 6000 | SRS20187320 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024883 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_179 (21PG77-2) | SAMN39503959 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 69 | SRX23310844 | SRP484717 | Illumina NovaSeq 6000 | SRS20187173 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024884 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_18 (21PG40-1) | SAMN39503958 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 70 | SRX23310845 | SRP484717 | Illumina NovaSeq 6000 | SRS20187172 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024885 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_180 (21PG77-2) | SAMN39503957 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 71 | SRX23310846 | SRP484717 | Illumina NovaSeq 6000 | SRS20187175 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024886 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_181 (21PG77-2) | SAMN39503956 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 72 | SRX23310847 | SRP484717 | Illumina NovaSeq 6000 | SRS20187174 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024887 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_182 (21PG77-2) | SAMN39503955 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 73 | SRX23310848 | SRP484717 | Illumina NovaSeq 6000 | SRS20187176 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024888 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_183 (21PG77-2) | SAMN39503954 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 74 | SRX23310849 | SRP484717 | Illumina NovaSeq 6000 | SRS20187178 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024889 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_184 (21PG77-2) | SAMN39503953 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 75 | SRX23310850 | SRP484717 | Illumina NovaSeq 6000 | SRS20187177 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024890 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_185 (21PG77-2) | SAMN39503952 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 76 | SRX23310851 | SRP484717 | Illumina NovaSeq 6000 | SRS20187179 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024891 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_186 (21PG50-1) | SAMN39503951 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 77 | SRX23311024 | SRP484717 | Illumina NovaSeq 6000 | SRS20187349 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024892 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_187 (21PG50-1) | SAMN39503950 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 78 | SRX23311025 | SRP484717 | Illumina NovaSeq 6000 | SRS20187354 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024893 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_188 (21PG50-1) | SAMN39503949 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 79 | SRX23311027 | SRP484717 | Illumina NovaSeq 6000 | SRS20187353 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024895 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_19 (21PG40-1) | SAMN39503947 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 80 | SRX23311029 | SRP484717 | Illumina NovaSeq 6000 | SRS20187356 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024897 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_191 (21PG50-1) | SAMN39503945 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 81 | SRX23311030 | SRP484717 | Illumina NovaSeq 6000 | SRS20187359 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024898 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_192 (21PG50-1) | SAMN39503944 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 82 | SRX23311031 | SRP484717 | Illumina NovaSeq 6000 | SRS20187360 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024899 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_193 (21PG57-1) | SAMN39503943 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 83 | SRX23311417 | SRP484717 | Illumina NovaSeq 6000 | SRS20187747 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024901 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_195 (21PG57-1) | SAMN39503941 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 84 | SRX23311418 | SRP484717 | Illumina NovaSeq 6000 | SRS20187745 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024902 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_196 (21PG57-1) | SAMN39503940 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 85 | SRX23311419 | SRP484717 | Illumina NovaSeq 6000 | SRS20187746 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024903 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_198 (21PG57-1) | SAMN39503939 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 86 | SRX23311420 | SRP484717 | Illumina NovaSeq 6000 | SRS20187749 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024904 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_2 (21PG50-2) | SAMN39503938 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 87 | SRX23311421 | SRP484717 | Illumina NovaSeq 6000 | SRS20187748 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024905 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_20 (21PG40-1) | SAMN39503937 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 88 | SRX23311422 | SRP484717 | Illumina NovaSeq 6000 | SRS20187750 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024906 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_200 (21PG57-1) | SAMN39503936 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 89 | SRX23311423 | SRP484717 | Illumina NovaSeq 6000 | SRS20187753 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024907 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_201 (21PG57-1) | SAMN39503935 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 90 | SRX23310994 | SRP484717 | Illumina NovaSeq 6000 | SRS20187322 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024908 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_202 (21PG57-1) | SAMN39503934 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 91 | SRX23310995 | SRP484717 | Illumina NovaSeq 6000 | SRS20187323 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024909 | Late blastocyst: E5.5 | ICM: PE | Late blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_206 (21PG57-1) | SAMN39503933 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 92 | SRX23310996 | SRP484717 | Illumina NovaSeq 6000 | SRS20187324 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024910 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_209 (21PG57-1) | SAMN39503932 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 93 | SRX23310997 | SRP484717 | Illumina NovaSeq 6000 | SRS20187325 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024911 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_21 (21PG40-1) | SAMN39503931 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 94 | SRX23310998 | SRP484717 | Illumina NovaSeq 6000 | SRS20187326 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024912 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_210 (21PG57-1) | SAMN39503930 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 95 | SRX23311086 | SRP484717 | Illumina NovaSeq 6000 | SRS20187411 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024913 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_22 (21PG40-1) | SAMN39503929 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 96 | SRX23311087 | SRP484717 | Illumina NovaSeq 6000 | SRS20187415 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024914 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_23 (21PG40-1) | SAMN39503928 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 97 | SRX23311088 | SRP484717 | Illumina NovaSeq 6000 | SRS20187416 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024915 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_230 (21PG49-3) | SAMN39503927 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 98 | SRX23310852 | SRP484717 | Illumina NovaSeq 6000 | SRS20187180 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024916 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_231 (21PG49-3) | SAMN39503926 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 99 | SRX23310853 | SRP484717 | Illumina NovaSeq 6000 | SRS20187181 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024917 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_232 (21PG49-3) | SAMN39503925 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 100 | SRX23310854 | SRP484717 | Illumina NovaSeq 6000 | SRS20187182 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024918 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_233 (21PG49-3) | SAMN39503924 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 101 | SRX23310855 | SRP484717 | Illumina NovaSeq 6000 | SRS20187183 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024919 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_234 (21PG49-3) | SAMN39503923 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 102 | SRX23310856 | SRP484717 | Illumina NovaSeq 6000 | SRS20187184 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024920 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_235 (21PG49-3) | SAMN39503922 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 103 | SRX23310857 | SRP484717 | Illumina NovaSeq 6000 | SRS20187186 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024921 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_236 (21PG49-3) | SAMN39503921 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 104 | SRX23310858 | SRP484717 | Illumina NovaSeq 6000 | SRS20187187 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024922 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_237 (21PG49-3) | SAMN39503920 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 105 | SRX23310859 | SRP484717 | Illumina NovaSeq 6000 | SRS20187185 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024923 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_238 (21PG49-3) | SAMN39503919 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 106 | SRX23311032 | SRP484717 | Illumina NovaSeq 6000 | SRS20187358 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024924 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_239 (21PG49-3) | SAMN39503918 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 107 | SRX23311033 | SRP484717 | Illumina NovaSeq 6000 | SRS20187362 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024925 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_24 (21PG40-1) | SAMN39503917 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 108 | SRX23311034 | SRP484717 | Illumina NovaSeq 6000 | SRS20187361 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024926 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_240 (21PG49-3) | SAMN39503916 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 109 | SRX23311035 | SRP484717 | Illumina NovaSeq 6000 | SRS20187364 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024927 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_241 (21PG49-3) | SAMN39503915 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 110 | SRX23311036 | SRP484717 | Illumina NovaSeq 6000 | SRS20187365 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024928 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_242 (21PG49-3) | SAMN39503914 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 111 | SRX23311037 | SRP484717 | Illumina NovaSeq 6000 | SRS20187363 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024929 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_243 (21PG49-3) | SAMN39503913 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 112 | SRX23311038 | SRP484717 | Illumina NovaSeq 6000 | SRS20187366 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024930 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_244 (21PG49-3) | SAMN39503912 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 113 | SRX23311039 | SRP484717 | Illumina NovaSeq 6000 | SRS20187367 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024931 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_245 (21PG49-3) | SAMN39503911 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 114 | SRX23311424 | SRP484717 | Illumina NovaSeq 6000 | SRS20187752 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024932 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_246 (21PG49-3) | SAMN39503910 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 115 | SRX23311425 | SRP484717 | Illumina NovaSeq 6000 | SRS20187751 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024933 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_247 (21PG49-3) | SAMN39503909 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 116 | SRX23311426 | SRP484717 | Illumina NovaSeq 6000 | SRS20187754 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024934 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_248 (21PG49-3) | SAMN39503908 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 117 | SRX23311427 | SRP484717 | Illumina NovaSeq 6000 | SRS20187755 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024935 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_249 (21PG49-3) | SAMN39503907 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 118 | SRX23311428 | SRP484717 | Illumina NovaSeq 6000 | SRS20187756 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024936 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_25 (21PG40-1) | SAMN39503906 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 119 | SRX23311429 | SRP484717 | Illumina NovaSeq 6000 | SRS20187757 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024937 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_250 (21PG49-3) | SAMN39503905 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 120 | SRX23311430 | SRP484717 | Illumina NovaSeq 6000 | SRS20187758 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024938 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_251 (21PG49-3) | SAMN39503904 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 121 | SRX23311431 | SRP484717 | Illumina NovaSeq 6000 | SRS20187759 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024939 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_252 (21PG49-3) | SAMN39503903 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 122 | SRX23311089 | SRP484717 | Illumina NovaSeq 6000 | SRS20187417 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024940 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_253 (21PG49-3) | SAMN39503902 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 123 | SRX23311090 | SRP484717 | Illumina NovaSeq 6000 | SRS20187418 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024941 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_254 (21PG76-2) | SAMN39503901 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 124 | SRX23311091 | SRP484717 | Illumina NovaSeq 6000 | SRS20187420 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024942 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_255 (21PG76-2) | SAMN39503900 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 125 | SRX23311093 | SRP484717 | Illumina NovaSeq 6000 | SRS20187421 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024944 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_257 (20PG4-2) | SAMN39503898 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 126 | SRX23311094 | SRP484717 | Illumina NovaSeq 6000 | SRS20187422 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024945 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_258 (20PG4-2) | SAMN39503897 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 127 | SRX23311095 | SRP484717 | Illumina NovaSeq 6000 | SRS20187424 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024946 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_259 (20PG4-2) | SAMN39503896 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 128 | SRX23311096 | SRP484717 | Illumina NovaSeq 6000 | SRS20187423 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024947 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_26 (21PG40-1) | SAMN39503895 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 129 | SRX23310860 | SRP484717 | Illumina NovaSeq 6000 | SRS20187188 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024948 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_260 (20PG4-2) | SAMN39503894 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 130 | SRX23310861 | SRP484717 | Illumina NovaSeq 6000 | SRS20187190 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024949 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_261 (20PG4-2) | SAMN39503893 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 131 | SRX23310862 | SRP484717 | Illumina NovaSeq 6000 | SRS20187189 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024950 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_262 (20PG4-2) | SAMN39503892 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 132 | SRX23310863 | SRP484717 | Illumina NovaSeq 6000 | SRS20187191 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024951 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_263 (20PG4-2) | SAMN39503891 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 133 | SRX23310864 | SRP484717 | Illumina NovaSeq 6000 | SRS20187192 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024952 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_264 (20PG4-2) | SAMN39503890 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 134 | SRX23310865 | SRP484717 | Illumina NovaSeq 6000 | SRS20187194 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024953 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_265 (20PG4-2) | SAMN39503889 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 135 | SRX23310866 | SRP484717 | Illumina NovaSeq 6000 | SRS20187193 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024954 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_266 (20PG4-2) | SAMN39503888 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 136 | SRX23310867 | SRP484717 | Illumina NovaSeq 6000 | SRS20187195 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024955 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_267 (20PG4-2) | SAMN39503887 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 137 | SRX23311040 | SRP484717 | Illumina NovaSeq 6000 | SRS20187368 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024956 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_268 (20PG4-2) | SAMN39503886 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 138 | SRX23311041 | SRP484717 | Illumina NovaSeq 6000 | SRS20187371 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024957 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_269 (20PG4-2) | SAMN39503885 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 139 | SRX23311042 | SRP484717 | Illumina NovaSeq 6000 | SRS20187369 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024958 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_27 (21PG40-1) | SAMN39503884 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 140 | SRX23311043 | SRP484717 | Illumina NovaSeq 6000 | SRS20187370 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024959 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_270 (20PG4-2) | SAMN39503883 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 141 | SRX23311044 | SRP484717 | Illumina NovaSeq 6000 | SRS20187372 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024960 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_271 (20PG4-2) | SAMN39503882 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 142 | SRX23311045 | SRP484717 | Illumina NovaSeq 6000 | SRS20187374 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024961 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_272 (20PG4-2) | SAMN39503881 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 143 | SRX23311046 | SRP484717 | Illumina NovaSeq 6000 | SRS20187373 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024962 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_273 (20PG4-2) | SAMN39503880 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 144 | SRX23311047 | SRP484717 | Illumina NovaSeq 6000 | SRS20187376 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024963 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_274 (20PG4-2) | SAMN39503879 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 145 | SRX23311432 | SRP484717 | Illumina NovaSeq 6000 | SRS20187760 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024964 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_275 (20PG4-2) | SAMN39503878 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 146 | SRX23311433 | SRP484717 | Illumina NovaSeq 6000 | SRS20187761 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024965 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_276 (20PG4-2) | SAMN39503877 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 147 | SRX23311434 | SRP484717 | Illumina NovaSeq 6000 | SRS20187762 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024966 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_277 (20PG4-2) | SAMN39503876 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 148 | SRX23311435 | SRP484717 | Illumina NovaSeq 6000 | SRS20187764 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024967 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_278 (20PG4-2) | SAMN39503875 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 149 | SRX23311436 | SRP484717 | Illumina NovaSeq 6000 | SRS20187763 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024968 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_279 (20PG4-2) | SAMN39503874 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 150 | SRX23311437 | SRP484717 | Illumina NovaSeq 6000 | SRS20187765 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024969 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_28 (21PG40-1) | SAMN39503873 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 151 | SRX23311438 | SRP484717 | Illumina NovaSeq 6000 | SRS20187769 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024970 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_280 (20PG4-2) | SAMN39503872 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 152 | SRX23311439 | SRP484717 | Illumina NovaSeq 6000 | SRS20187767 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024971 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_281 (20PG4-2) | SAMN39503871 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 153 | SRX23311097 | SRP484717 | Illumina NovaSeq 6000 | SRS20187425 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024972 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_282 (20PG4-2) | SAMN39503870 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 154 | SRX23311098 | SRP484717 | Illumina NovaSeq 6000 | SRS20187426 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024973 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_283 (20PG4-2) | SAMN39503869 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 155 | SRX23311099 | SRP484717 | Illumina NovaSeq 6000 | SRS20187427 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024974 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_284 (20PG4-2) | SAMN39503868 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 156 | SRX23311100 | SRP484717 | Illumina NovaSeq 6000 | SRS20187429 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024975 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_285 (20PG4-2) | SAMN39503867 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 157 | SRX23311101 | SRP484717 | Illumina NovaSeq 6000 | SRS20187430 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024976 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_286 (20PG4-2) | SAMN39503866 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 158 | SRX23311102 | SRP484717 | Illumina NovaSeq 6000 | SRS20187428 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024977 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_287 (20PG4-2) | SAMN39503865 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 159 | SRX23311103 | SRP484717 | Illumina NovaSeq 6000 | SRS20187431 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024978 | Late blastocyst: E5.5 | TE: mural | Late blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_288 (21PG57-1) | SAMN39503864 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 160 | SRX23310868 | SRP484717 | Illumina NovaSeq 6000 | SRS20187197 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024980 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_29 (21PG40-1) | SAMN39503862 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 161 | SRX23310869 | SRP484717 | Illumina NovaSeq 6000 | SRS20187196 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024981 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_290 (20PG4-1) | SAMN39503861 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 162 | SRX23310870 | SRP484717 | Illumina NovaSeq 6000 | SRS20187198 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024982 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_291 (20PG4-1) | SAMN39503860 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 163 | SRX23310871 | SRP484717 | Illumina NovaSeq 6000 | SRS20187199 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024983 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_292 (20PG4-1) | SAMN39503859 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 164 | SRX23310872 | SRP484717 | Illumina NovaSeq 6000 | SRS20187202 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024984 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_293 (20PG4-1) | SAMN39503858 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 165 | SRX23310873 | SRP484717 | Illumina NovaSeq 6000 | SRS20187200 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024985 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_294 (20PG4-1) | SAMN39503857 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 166 | SRX23310874 | SRP484717 | Illumina NovaSeq 6000 | SRS20187201 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024986 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_295 (20PG4-1) | SAMN39503856 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 167 | SRX23310875 | SRP484717 | Illumina NovaSeq 6000 | SRS20187203 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024987 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_296 (20PG4-1) | SAMN39503855 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 168 | SRX23311048 | SRP484717 | Illumina NovaSeq 6000 | SRS20187375 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024988 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_297 (20PG4-1) | SAMN39503854 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 169 | SRX23311049 | SRP484717 | Illumina NovaSeq 6000 | SRS20187377 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024989 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_298 (20PG4-1) | SAMN39503853 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 170 | SRX23311050 | SRP484717 | Illumina NovaSeq 6000 | SRS20187378 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024990 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_299 (20PG4-1) | SAMN39503852 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 171 | SRX23311051 | SRP484717 | Illumina NovaSeq 6000 | SRS20187379 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024991 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_3 (21PG50-2) | SAMN39503851 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 172 | SRX23311052 | SRP484717 | Illumina NovaSeq 6000 | SRS20187380 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024992 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_30 (21PG40-1) | SAMN39503850 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 173 | SRX23311053 | SRP484717 | Illumina NovaSeq 6000 | SRS20187381 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024993 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_300 (20PG4-1) | SAMN39503849 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 174 | SRX23311054 | SRP484717 | Illumina NovaSeq 6000 | SRS20187382 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024994 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_301 (20PG4-1) | SAMN39503848 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 175 | SRX23311055 | SRP484717 | Illumina NovaSeq 6000 | SRS20187383 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024995 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_302 (20PG4-1) | SAMN39503847 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 176 | SRX23311441 | SRP484717 | Illumina NovaSeq 6000 | SRS20187768 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024997 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_304 (20PG4-1) | SAMN39503845 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 177 | SRX23311442 | SRP484717 | Illumina NovaSeq 6000 | SRS20187772 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024998 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_305 (20PG4-1) | SAMN39503844 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 178 | SRX23311443 | SRP484717 | Illumina NovaSeq 6000 | SRS20187770 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8024999 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_306 (20PG4-1) | SAMN39503843 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 179 | SRX23311444 | SRP484717 | Illumina NovaSeq 6000 | SRS20187771 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025000 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_307 (20PG4-1) | SAMN39503842 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 180 | SRX23311446 | SRP484717 | Illumina NovaSeq 6000 | SRS20187774 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025002 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_309 (20PG4-1) | SAMN39503840 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 181 | SRX23311447 | SRP484717 | Illumina NovaSeq 6000 | SRS20187775 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025003 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_31 (21PG40-1) | SAMN39503839 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 182 | SRX23311106 | SRP484717 | Illumina NovaSeq 6000 | SRS20187435 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025005 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_311 (20PG4-1) | SAMN39503837 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 183 | SRX23311109 | SRP484717 | Illumina NovaSeq 6000 | SRS20187437 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025008 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_314 (21PG75-1) | SAMN39503834 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 184 | SRX23311110 | SRP484717 | Illumina NovaSeq 6000 | SRS20187436 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025009 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_315 (21PG75-1) | SAMN39503833 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 185 | SRX23311111 | SRP484717 | Illumina NovaSeq 6000 | SRS20187440 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025010 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_316 (21PG75-1) | SAMN39503832 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 186 | SRX23310877 | SRP484717 | Illumina NovaSeq 6000 | SRS20187204 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025013 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_319 (21PG75-1) | SAMN39503829 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 187 | SRX23310878 | SRP484717 | Illumina NovaSeq 6000 | SRS20187206 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025014 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_32 (21PG40-1) | SAMN39503828 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 188 | SRX23310879 | SRP484717 | Illumina NovaSeq 6000 | SRS20187207 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025015 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_320 (21PG75-1) | SAMN39503827 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 189 | SRX23310880 | SRP484717 | Illumina NovaSeq 6000 | SRS20187208 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025016 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_321 (21PG75-1) | SAMN39503826 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 190 | SRX23310881 | SRP484717 | Illumina NovaSeq 6000 | SRS20187209 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025017 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_322 (21PG75-1) | SAMN39503825 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 191 | SRX23310882 | SRP484717 | Illumina NovaSeq 6000 | SRS20187212 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025018 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_323 (21PG75-1) | SAMN39503824 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 192 | SRX23310883 | SRP484717 | Illumina NovaSeq 6000 | SRS20187211 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025019 | Late blastocyst: E6 | TE: polar | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_324 (21PG75-1) | SAMN39503823 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 193 | SRX23311056 | SRP484717 | Illumina NovaSeq 6000 | SRS20187384 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025020 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_325 (21PG75-1) | SAMN39503822 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 194 | SRX23311057 | SRP484717 | Illumina NovaSeq 6000 | SRS20187386 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025021 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_326 (21PG75-1) | SAMN39503821 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 195 | SRX23311059 | SRP484717 | Illumina NovaSeq 6000 | SRS20187385 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025023 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_328 (21PG75-1) | SAMN39503819 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 196 | SRX23311060 | SRP484717 | Illumina NovaSeq 6000 | SRS20187389 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025024 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_329 (21PG75-1) | SAMN39503818 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 197 | SRX23311061 | SRP484717 | Illumina NovaSeq 6000 | SRS20187390 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025025 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_33 (21PG40-1) | SAMN39503817 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 198 | SRX23311062 | SRP484717 | Illumina NovaSeq 6000 | SRS20187388 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025026 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_330 (21PG75-1) | SAMN39503816 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 199 | SRX23311063 | SRP484717 | Illumina NovaSeq 6000 | SRS20187391 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025027 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_331 (21PG75-1) | SAMN39503815 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 200 | SRX23311448 | SRP484717 | Illumina NovaSeq 6000 | SRS20187776 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025028 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_332 (21PG75-1) | SAMN39503814 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 201 | SRX23311449 | SRP484717 | Illumina NovaSeq 6000 | SRS20187777 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025029 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_333 (21PG75-1) | SAMN39503813 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 202 | SRX23311450 | SRP484717 | Illumina NovaSeq 6000 | SRS20187778 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025030 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_334 (21PG75-1) | SAMN39503812 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 203 | SRX23311451 | SRP484717 | Illumina NovaSeq 6000 | SRS20187780 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025031 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_335 (21PG52-2) | SAMN39503811 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 204 | SRX23311452 | SRP484717 | Illumina NovaSeq 6000 | SRS20187779 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025032 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_336 (21PG52-2) | SAMN39503810 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 205 | SRX23311453 | SRP484717 | Illumina NovaSeq 6000 | SRS20187781 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025033 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_337 (21PG52-2) | SAMN39503809 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 206 | SRX23311454 | SRP484717 | Illumina NovaSeq 6000 | SRS20187782 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025034 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_338 (21PG52-2) | SAMN39503808 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 207 | SRX23311113 | SRP484717 | Illumina NovaSeq 6000 | SRS20187442 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025036 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_34 (21PG40-1) | SAMN39503806 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 208 | SRX23311114 | SRP484717 | Illumina NovaSeq 6000 | SRS20187441 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025037 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_340 (21PG52-2) | SAMN39503805 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 209 | SRX23311115 | SRP484717 | Illumina NovaSeq 6000 | SRS20187443 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025038 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_341 (21PG52-2) | SAMN39503804 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 210 | SRX23311116 | SRP484717 | Illumina NovaSeq 6000 | SRS20187444 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025039 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_342 (21PG52-2) | SAMN39503803 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 211 | SRX23311117 | SRP484717 | Illumina NovaSeq 6000 | SRS20187446 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025040 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_343 (21PG52-2) | SAMN39503802 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 212 | SRX23311118 | SRP484717 | Illumina NovaSeq 6000 | SRS20187445 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025041 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_344 (21PG52-2) | SAMN39503801 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 213 | SRX23311119 | SRP484717 | Illumina NovaSeq 6000 | SRS20187447 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025042 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_345 (21PG52-2) | SAMN39503800 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 214 | SRX23311120 | SRP484717 | Illumina NovaSeq 6000 | SRS20187448 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025043 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_346 (21PG52-2) | SAMN39503799 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 215 | SRX23310884 | SRP484717 | Illumina NovaSeq 6000 | SRS20187210 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025044 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_347 (21PG52-2) | SAMN39503798 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 216 | SRX23310885 | SRP484717 | Illumina NovaSeq 6000 | SRS20187213 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025045 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_348 (21PG52-2) | SAMN39503797 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 217 | SRX23310886 | SRP484717 | Illumina NovaSeq 6000 | SRS20187215 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025046 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_349 (21PG52-2) | SAMN39503796 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 218 | SRX23310887 | SRP484717 | Illumina NovaSeq 6000 | SRS20187214 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025047 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_35 (21PG40-1) | SAMN39503795 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 219 | SRX23310889 | SRP484717 | Illumina NovaSeq 6000 | SRS20187217 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025049 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_351 (21PG52-2) | SAMN39503793 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 220 | SRX23310890 | SRP484717 | Illumina NovaSeq 6000 | SRS20187218 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025050 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_352 (21PG52-2) | SAMN39503792 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 221 | SRX23310891 | SRP484717 | Illumina NovaSeq 6000 | SRS20187219 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025051 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_353 (21PG41-1) | SAMN39503791 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 222 | SRX23311064 | SRP484717 | Illumina NovaSeq 6000 | SRS20187392 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025052 | 16-32 cell: E4.75 | Prelineage: Morula | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_354 (21PG41-1) | SAMN39503790 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 223 | SRX23311065 | SRP484717 | Illumina NovaSeq 6000 | SRS20187393 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025053 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_355 (21PG41-1) | SAMN39503789 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 224 | SRX23311066 | SRP484717 | Illumina NovaSeq 6000 | SRS20187395 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025054 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_356 (21PG41-1) | SAMN39503788 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 225 | SRX23311067 | SRP484717 | Illumina NovaSeq 6000 | SRS20187396 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025055 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_357 (21PG41-1) | SAMN39503787 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 226 | SRX23311068 | SRP484717 | Illumina NovaSeq 6000 | SRS20187394 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025056 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_358 (21PG41-1) | SAMN39503786 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 227 | SRX23311069 | SRP484717 | Illumina NovaSeq 6000 | SRS20187397 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025057 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_359 (21PG41-1) | SAMN39503785 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 228 | SRX23311070 | SRP484717 | Illumina NovaSeq 6000 | SRS20187398 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025058 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_36 (21PG40-1) | SAMN39503784 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 229 | SRX23311071 | SRP484717 | Illumina NovaSeq 6000 | SRS20187399 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025059 | 16-32 cell: E4.75 | Prelineage: Precavitation | 16-32 cell: E4.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_360 (21PG41-1) | SAMN39503783 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 230 | SRX23311458 | SRP484717 | Illumina NovaSeq 6000 | SRS20187786 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025062 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_37 (21PG40-1) | SAMN39503780 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 231 | SRX23311459 | SRP484717 | Illumina NovaSeq 6000 | SRS20187787 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025063 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_38 (21PG40-1) | SAMN39503779 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 232 | SRX23311460 | SRP484717 | Illumina NovaSeq 6000 | SRS20187788 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025064 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_39 (21PG40-1) | SAMN39503778 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 233 | SRX23311461 | SRP484717 | Illumina NovaSeq 6000 | SRS20187789 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025065 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_4 (21PG50-2) | SAMN39503777 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 234 | SRX23311462 | SRP484717 | Illumina NovaSeq 6000 | SRS20187791 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025066 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_40 (21PG40-1) | SAMN39503776 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 235 | SRX23311463 | SRP484717 | Illumina NovaSeq 6000 | SRS20187790 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025067 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_41 (21PG40-1) | SAMN39503775 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 236 | SRX23311121 | SRP484717 | Illumina NovaSeq 6000 | SRS20187449 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025068 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_42 (21PG40-1) | SAMN39503774 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 237 | SRX23311122 | SRP484717 | Illumina NovaSeq 6000 | SRS20187450 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025069 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_43 (21PG51-2) | SAMN39503773 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 238 | SRX23311123 | SRP484717 | Illumina NovaSeq 6000 | SRS20187452 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025070 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_44 (21PG51-2) | SAMN39503772 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 239 | SRX23311124 | SRP484717 | Illumina NovaSeq 6000 | SRS20187451 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025071 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_45 (21PG51-2) | SAMN39503771 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 240 | SRX23311125 | SRP484717 | Illumina NovaSeq 6000 | SRS20187453 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025072 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_46 (21PG51-2) | SAMN39503770 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 241 | SRX23311126 | SRP484717 | Illumina NovaSeq 6000 | SRS20187455 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025073 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_47 (21PG51-2) | SAMN39503769 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 242 | SRX23311127 | SRP484717 | Illumina NovaSeq 6000 | SRS20187454 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025074 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_48 (21PG51-2) | SAMN39503768 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 243 | SRX23311128 | SRP484717 | Illumina NovaSeq 6000 | SRS20187456 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025075 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_49 (21PG51-2) | SAMN39503767 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 244 | SRX23310892 | SRP484717 | Illumina NovaSeq 6000 | SRS20187220 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025076 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_5 (21PG50-2) | SAMN39503766 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 245 | SRX23310893 | SRP484717 | Illumina NovaSeq 6000 | SRS20187221 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025077 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_50 (21PG51-2) | SAMN39503765 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 246 | SRX23310894 | SRP484717 | Illumina NovaSeq 6000 | SRS20187222 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025078 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_51 (21PG51-2) | SAMN39503764 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 247 | SRX23310895 | SRP484717 | Illumina NovaSeq 6000 | SRS20187224 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025079 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_52 (21PG51-2) | SAMN39503763 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 248 | SRX23310896 | SRP484717 | Illumina NovaSeq 6000 | SRS20187223 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025080 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_53 (21PG51-2) | SAMN39503762 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 249 | SRX23310897 | SRP484717 | Illumina NovaSeq 6000 | SRS20187226 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025081 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_54 (21PG51-2) | SAMN39503761 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 250 | SRX23310898 | SRP484717 | Illumina NovaSeq 6000 | SRS20187225 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025082 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_55 (21PG51-2) | SAMN39503760 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 251 | SRX23310899 | SRP484717 | Illumina NovaSeq 6000 | SRS20187227 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025083 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_56 (21PG51-2) | SAMN39503759 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 252 | SRX23311072 | SRP484717 | Illumina NovaSeq 6000 | SRS20187401 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025084 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_57 (21PG51-2) | SAMN39503758 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 253 | SRX23311073 | SRP484717 | Illumina NovaSeq 6000 | SRS20187402 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025085 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_58 (21PG51-2) | SAMN39503757 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 254 | SRX23311074 | SRP484717 | Illumina NovaSeq 6000 | SRS20187400 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025086 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_59 (21PG51-2) | SAMN39503756 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 255 | SRX23311075 | SRP484717 | Illumina NovaSeq 6000 | SRS20187403 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025087 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_6 (21PG50-2) | SAMN39503755 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 256 | SRX23311076 | SRP484717 | Illumina NovaSeq 6000 | SRS20187405 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025088 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_60 (21PG51-2) | SAMN39503754 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 257 | SRX23311077 | SRP484717 | Illumina NovaSeq 6000 | SRS20187404 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025089 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_61 (21PG51-2) | SAMN39503753 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 258 | SRX23311078 | SRP484717 | Illumina NovaSeq 6000 | SRS20187406 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025090 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_62 (21PG51-3) | SAMN39503752 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 259 | SRX23311079 | SRP484717 | Illumina NovaSeq 6000 | SRS20187408 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025091 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_63 (21PG51-3) | SAMN39503751 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 260 | SRX23311464 | SRP484717 | Illumina NovaSeq 6000 | SRS20187792 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025092 | Early blastocyst: E4.5 | ICM: PE | Early blastocyst: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_64 (21PG51-3) | SAMN39503750 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 261 | SRX23311465 | SRP484717 | Illumina NovaSeq 6000 | SRS20187793 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025093 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_65 (21PG51-3) | SAMN39503749 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 262 | SRX23311466 | SRP484717 | Illumina NovaSeq 6000 | SRS20187794 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025094 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_66 (21PG51-3) | SAMN39503748 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 263 | SRX23311467 | SRP484717 | Illumina NovaSeq 6000 | SRS20187797 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025095 | Early blastocyst: E4.5 | ICM: ICM | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_67 (21PG51-3) | SAMN39503747 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 264 | SRX23311468 | SRP484717 | Illumina NovaSeq 6000 | SRS20187795 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025096 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_68 (21PG51-3) | SAMN39503746 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 265 | SRX23311469 | SRP484717 | Illumina NovaSeq 6000 | SRS20187796 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025097 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_69 (21PG51-3) | SAMN39503745 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 266 | SRX23311470 | SRP484717 | Illumina NovaSeq 6000 | SRS20187798 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025098 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_7 (21PG50-2) | SAMN39503744 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 267 | SRX23311471 | SRP484717 | Illumina NovaSeq 6000 | SRS20187799 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025099 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_70 (21PG51-3) | SAMN39503743 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 268 | SRX23311129 | SRP484717 | Illumina NovaSeq 6000 | SRS20187457 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025100 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_71 (21PG51-3) | SAMN39503742 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 269 | SRX23311130 | SRP484717 | Illumina NovaSeq 6000 | SRS20187458 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025101 | Early blastocyst: E4.5 | ICM: EPI | Early blastocyst: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_72 (21PG51-3) | SAMN39503741 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 270 | SRX23311131 | SRP484717 | Illumina NovaSeq 6000 | SRS20187459 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025102 | Early blastocyst: E4.5 | TE: polar | Early blastocyst: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_73 (21PG51-3) | SAMN39503740 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 271 | SRX23311132 | SRP484717 | Illumina NovaSeq 6000 | SRS20187461 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025103 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_74 (21PG76-1) | SAMN39503739 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 272 | SRX23311133 | SRP484717 | Illumina NovaSeq 6000 | SRS20187460 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025104 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_75 (21PG76-1) | SAMN39503738 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 273 | SRX23311134 | SRP484717 | Illumina NovaSeq 6000 | SRS20187462 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025105 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_76 (21PG76-1) | SAMN39503737 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 274 | SRX23310901 | SRP484717 | Illumina NovaSeq 6000 | SRS20187229 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025109 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_8 (21PG50-2) | SAMN39503733 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 275 | SRX23310902 | SRP484717 | Illumina NovaSeq 6000 | SRS20187230 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025110 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_80 (21PG76-2) | SAMN39503732 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 276 | SRX23311082 | SRP484717 | Illumina NovaSeq 6000 | SRS20187410 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025118 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_88 (21PG76-2) | SAMN39503724 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 277 | SRX23311083 | SRP484717 | Illumina NovaSeq 6000 | SRS20187412 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025119 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_89 (21PG76-2) | SAMN39503723 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 278 | SRX23311084 | SRP484717 | Illumina NovaSeq 6000 | SRS20187413 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025120 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_9 (21PG39-1) | SAMN39503722 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 279 | SRX23311085 | SRP484717 | Illumina NovaSeq 6000 | SRS20187414 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025121 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_90 (21PG76-2) | SAMN39503721 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 280 | SRX23311472 | SRP484717 | Illumina NovaSeq 6000 | SRS20187800 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025124 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_93 (21PG76-2) | SAMN39503718 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 281 | SRX23311473 | SRP484717 | Illumina NovaSeq 6000 | SRS20187803 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025125 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_94 (21PG76-2) | SAMN39503717 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 282 | SRX23311475 | SRP484717 | Illumina NovaSeq 6000 | SRS20187804 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025127 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_96 (21PG76-2) | SAMN39503715 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 283 | SRX23311476 | SRP484717 | Illumina NovaSeq 6000 | SRS20187802 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025128 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_97 (21PG55-2) | SAMN39503714 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 284 | SRX23311477 | SRP484717 | Illumina NovaSeq 6000 | SRS20187805 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025129 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_98 (21PG55-2) | SAMN39503713 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 285 | SRX23311478 | SRP484717 | Illumina NovaSeq 6000 | SRS20187806 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025130 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_99 (21PG55-2) | SAMN39503712 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 286 | SRX23311479 | SRP484717 | Illumina NovaSeq 6000 | SRS20187808 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025131 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_1 (21PG50-3) | SAMN39503711 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 287 | SRX23311137 | SRP484717 | Illumina NovaSeq 6000 | SRS20187463 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025132 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_10 (21PG77-1) | SAMN39503710 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 288 | SRX23311138 | SRP484717 | Illumina NovaSeq 6000 | SRS20187466 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025133 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_100 (21PG55-3) | SAMN39503709 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 289 | SRX23311139 | SRP484717 | Illumina NovaSeq 6000 | SRS20187467 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025134 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_101 (21PG55-3) | SAMN39503708 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 290 | SRX23311140 | SRP484717 | Illumina NovaSeq 6000 | SRS20187469 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025135 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_102 (21PG55-3) | SAMN39503707 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 291 | SRX23311141 | SRP484717 | Illumina NovaSeq 6000 | SRS20187470 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025136 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_103 (21PG55-3) | SAMN39503706 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 292 | SRX23311142 | SRP484717 | Illumina NovaSeq 6000 | SRS20187468 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025137 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_104 (21PG55-3) | SAMN39503705 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 293 | SRX23311143 | SRP484717 | Illumina NovaSeq 6000 | SRS20187472 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025138 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_105 (21PG55-3) | SAMN39503704 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 294 | SRX23311144 | SRP484717 | Illumina NovaSeq 6000 | SRS20187471 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025139 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_106 (21PG55-3) | SAMN39503703 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 295 | SRX23310908 | SRP484717 | Illumina NovaSeq 6000 | SRS20187237 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025140 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_107 (21PG55-3) | SAMN39503702 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 296 | SRX23310909 | SRP484717 | Illumina NovaSeq 6000 | SRS20187236 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025141 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_108 (21PG55-3) | SAMN39503701 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 297 | SRX23310910 | SRP484717 | Illumina NovaSeq 6000 | SRS20187238 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025142 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_109 (21PG55-3) | SAMN39503700 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 298 | SRX23310911 | SRP484717 | Illumina NovaSeq 6000 | SRS20187239 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025143 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_11 (21PG77-1) | SAMN39503699 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 299 | SRX23311312 | SRP484717 | Illumina NovaSeq 6000 | SRS20187640 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025144 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_110 (21PG55-3) | SAMN39503698 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 300 | SRX23311313 | SRP484717 | Illumina NovaSeq 6000 | SRS20187641 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025145 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_111 (21PG55-3) | SAMN39503697 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 301 | SRX23311314 | SRP484717 | Illumina NovaSeq 6000 | SRS20187643 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025146 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_112 (21PG55-3) | SAMN39503696 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 302 | SRX23311175 | SRP484717 | Illumina NovaSeq 6000 | SRS20187504 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025148 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_114 (21PG55-3) | SAMN39503694 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 303 | SRX23311176 | SRP484717 | Illumina NovaSeq 6000 | SRS20187503 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025149 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_115 (21PG55-3) | SAMN39503693 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 304 | SRX23311177 | SRP484717 | Illumina NovaSeq 6000 | SRS20187505 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025150 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_116 (21PG49-1) | SAMN39503692 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 305 | SRX23311178 | SRP484717 | Illumina NovaSeq 6000 | SRS20187506 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025151 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_117 (21PG49-1) | SAMN39503691 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 306 | SRX23311179 | SRP484717 | Illumina NovaSeq 6000 | SRS20187507 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025152 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_118 (21PG49-1) | SAMN39503690 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 307 | SRX23311180 | SRP484717 | Illumina NovaSeq 6000 | SRS20187508 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025153 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_119 (21PG49-1) | SAMN39503689 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 308 | SRX23311181 | SRP484717 | Illumina NovaSeq 6000 | SRS20187509 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025154 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_12 (21PG77-1) | SAMN39503688 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 309 | SRX23311182 | SRP484717 | Illumina NovaSeq 6000 | SRS20187510 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025155 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_120 (21PG49-1) | SAMN39503687 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 310 | SRX23311480 | SRP484717 | Illumina NovaSeq 6000 | SRS20187807 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025156 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_121 (21PG49-1) | SAMN39503686 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 311 | SRX23311481 | SRP484717 | Illumina NovaSeq 6000 | SRS20187809 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025157 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_122 (21PG49-1) | SAMN39503685 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 312 | SRX23311483 | SRP484717 | Illumina NovaSeq 6000 | SRS20187811 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025159 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_124 (21PG49-1) | SAMN39503683 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 313 | SRX23311484 | SRP484717 | Illumina NovaSeq 6000 | SRS20187812 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025160 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_125 (21PG49-1) | SAMN39503682 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 314 | SRX23311485 | SRP484717 | Illumina NovaSeq 6000 | SRS20187813 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025161 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_126 (21PG49-1) | SAMN39503681 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 315 | SRX23310912 | SRP484717 | Illumina NovaSeq 6000 | SRS20187240 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025162 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_127 (21PG49-1) | SAMN39503680 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 316 | SRX23310913 | SRP484717 | Illumina NovaSeq 6000 | SRS20187241 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025163 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_128 (21PG49-1) | SAMN39503679 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 317 | SRX23311146 | SRP484717 | Illumina NovaSeq 6000 | SRS20187474 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025165 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_13 (21PG77-1) | SAMN39503677 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 318 | SRX23311148 | SRP484717 | Illumina NovaSeq 6000 | SRS20187475 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025167 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_131 (21PG49-2) | SAMN39503675 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 319 | SRX23311149 | SRP484717 | Illumina NovaSeq 6000 | SRS20187480 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025168 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_132 (21PG49-2) | SAMN39503674 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 320 | SRX23311150 | SRP484717 | Illumina NovaSeq 6000 | SRS20187479 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025169 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_133 (21PG49-2) | SAMN39503673 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 321 | SRX23311151 | SRP484717 | Illumina NovaSeq 6000 | SRS20187477 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025170 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_134 (21PG49-2) | SAMN39503672 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 322 | SRX23311152 | SRP484717 | Illumina NovaSeq 6000 | SRS20187478 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025171 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_135 (21PG49-2) | SAMN39503671 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 323 | SRX23311316 | SRP484717 | Illumina NovaSeq 6000 | SRS20187642 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025172 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_136 (21PG49-2) | SAMN39503670 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 324 | SRX23311317 | SRP484717 | Illumina NovaSeq 6000 | SRS20187645 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025173 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_137 (21PG49-2) | SAMN39503669 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 325 | SRX23311318 | SRP484717 | Illumina NovaSeq 6000 | SRS20187646 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025174 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_138 (21PG49-2) | SAMN39503668 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 326 | SRX23311319 | SRP484717 | Illumina NovaSeq 6000 | SRS20187648 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025175 | Early blastocyst: E5.25 | ICM: EPI | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_139 (21PG49-2) | SAMN39503667 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 327 | SRX23311320 | SRP484717 | Illumina NovaSeq 6000 | SRS20187647 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025176 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_14 (21PG77-1) | SAMN39503666 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 328 | SRX23311321 | SRP484717 | Illumina NovaSeq 6000 | SRS20187649 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025177 | Early blastocyst: E5.25 | TE: polar | Early blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_140 (21PG49-2) | SAMN39503665 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 329 | SRX23311322 | SRP484717 | Illumina NovaSeq 6000 | SRS20187650 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025178 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_141 (21PG53-2) | SAMN39503664 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 330 | SRX23311323 | SRP484717 | Illumina NovaSeq 6000 | SRS20187652 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025179 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_142 (21PG53-2) | SAMN39503663 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 331 | SRX23311183 | SRP484717 | Illumina NovaSeq 6000 | SRS20187511 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025180 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_143 (21PG53-2) | SAMN39503662 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 332 | SRX23311184 | SRP484717 | Illumina NovaSeq 6000 | SRS20187512 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025181 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_144 (21PG53-2) | SAMN39503661 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 333 | SRX23311185 | SRP484717 | Illumina NovaSeq 6000 | SRS20187514 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025182 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_145 (21PG53-2) | SAMN39503660 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 334 | SRX23311186 | SRP484717 | Illumina NovaSeq 6000 | SRS20187513 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025183 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_146 (21PG53-2) | SAMN39503659 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 335 | SRX23311187 | SRP484717 | Illumina NovaSeq 6000 | SRS20187518 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025184 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_147 (21PG53-2) | SAMN39503658 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 336 | SRX23311188 | SRP484717 | Illumina NovaSeq 6000 | SRS20187515 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025185 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_148 (21PG53-2) | SAMN39503657 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 337 | SRX23311189 | SRP484717 | Illumina NovaSeq 6000 | SRS20187516 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025186 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_149 (21PG53-2) | SAMN39503656 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 338 | SRX23311190 | SRP484717 | Illumina NovaSeq 6000 | SRS20187519 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025187 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_15 (21PG77-1) | SAMN39503655 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 339 | SRX23310914 | SRP484717 | Illumina NovaSeq 6000 | SRS20187242 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025188 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_150 (21PG53-2) | SAMN39503654 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 340 | SRX23310915 | SRP484717 | Illumina NovaSeq 6000 | SRS20187243 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025189 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_151 (21PG53-2) | SAMN39503653 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 341 | SRX23310916 | SRP484717 | Illumina NovaSeq 6000 | SRS20187244 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025190 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_152 (21PG53-2) | SAMN39503652 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 342 | SRX23310917 | SRP484717 | Illumina NovaSeq 6000 | SRS20187245 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025191 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_153 (21PG53-2) | SAMN39503651 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 343 | SRX23310918 | SRP484717 | Illumina NovaSeq 6000 | SRS20187246 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025192 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_154 (21PG53-2) | SAMN39503650 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 344 | SRX23310919 | SRP484717 | Illumina NovaSeq 6000 | SRS20187247 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025193 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_155 (21PG53-2) | SAMN39503649 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 345 | SRX23310920 | SRP484717 | Illumina NovaSeq 6000 | SRS20187248 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025194 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_156 (21PG53-2) | SAMN39503648 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 346 | SRX23310921 | SRP484717 | Illumina NovaSeq 6000 | SRS20187249 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025195 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_157 (21PG53-2) | SAMN39503647 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 347 | SRX23311153 | SRP484717 | Illumina NovaSeq 6000 | SRS20187481 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025196 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_158 (21PG53-2) | SAMN39503646 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 348 | SRX23311154 | SRP484717 | Illumina NovaSeq 6000 | SRS20187482 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025197 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_159 (21PG53-2) | SAMN39503645 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 349 | SRX23311155 | SRP484717 | Illumina NovaSeq 6000 | SRS20187483 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025198 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_16 (21PG77-1) | SAMN39503644 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 350 | SRX23311156 | SRP484717 | Illumina NovaSeq 6000 | SRS20187484 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025199 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_160 (21PG53-2) | SAMN39503643 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 351 | SRX23311157 | SRP484717 | Illumina NovaSeq 6000 | SRS20187485 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025200 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_161 (21PG53-2) | SAMN39503642 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 352 | SRX23311158 | SRP484717 | Illumina NovaSeq 6000 | SRS20187486 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025201 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_162 (21PG53-2) | SAMN39503641 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 353 | SRX23311159 | SRP484717 | Illumina NovaSeq 6000 | SRS20187487 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025202 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_163 (21PG53-2) | SAMN39503640 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 354 | SRX23311160 | SRP484717 | Illumina NovaSeq 6000 | SRS20187488 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025203 | 16-32 cell: E4.5 | Prelineage: Morula | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_164 (21PG53-2) | SAMN39503639 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 355 | SRX23311324 | SRP484717 | Illumina NovaSeq 6000 | SRS20187651 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025204 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_165 (21PG53-2) | SAMN39503638 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 356 | SRX23311325 | SRP484717 | Illumina NovaSeq 6000 | SRS20187653 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025205 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_166 (21PG53-2) | SAMN39503637 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 357 | SRX23311326 | SRP484717 | Illumina NovaSeq 6000 | SRS20187655 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025206 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_167 (21PG53-2) | SAMN39503636 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 358 | SRX23311327 | SRP484717 | Illumina NovaSeq 6000 | SRS20187654 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025207 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_168 (21PG32-2) | SAMN39503635 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 359 | SRX23311328 | SRP484717 | Illumina NovaSeq 6000 | SRS20187661 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025208 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_169 (21PG32-2) | SAMN39503634 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 360 | SRX23311329 | SRP484717 | Illumina NovaSeq 6000 | SRS20187662 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025209 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_17 (21PG77-1) | SAMN39503633 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 361 | SRX23311330 | SRP484717 | Illumina NovaSeq 6000 | SRS20187656 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025210 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_170 (21PG32-2) | SAMN39503632 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 362 | SRX23311331 | SRP484717 | Illumina NovaSeq 6000 | SRS20187659 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025211 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_171 (21PG32-2) | SAMN39503631 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 363 | SRX23311191 | SRP484717 | Illumina NovaSeq 6000 | SRS20187517 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025212 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_172 (21PG32-2) | SAMN39503630 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 364 | SRX23311192 | SRP484717 | Illumina NovaSeq 6000 | SRS20187520 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025213 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_173 (21PG32-2) | SAMN39503629 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 365 | SRX23311193 | SRP484717 | Illumina NovaSeq 6000 | SRS20187521 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025214 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_174 (21PG32-2) | SAMN39503628 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 366 | SRX23311194 | SRP484717 | Illumina NovaSeq 6000 | SRS20187522 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025215 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_175 (21PG32-2) | SAMN39503627 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 367 | SRX23311195 | SRP484717 | Illumina NovaSeq 6000 | SRS20187525 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025216 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_176 (21PG32-2) | SAMN39503626 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 368 | SRX23311196 | SRP484717 | Illumina NovaSeq 6000 | SRS20187524 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025217 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_177 (21PG32-2) | SAMN39503625 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 369 | SRX23311197 | SRP484717 | Illumina NovaSeq 6000 | SRS20187523 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025218 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_178 (21PG32-2) | SAMN39503624 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 370 | SRX23311198 | SRP484717 | Illumina NovaSeq 6000 | SRS20187527 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025219 | 16 cell: E4.5 | Prelineage: Precavitation | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_179 (21PG32-2) | SAMN39503623 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 371 | SRX23310922 | SRP484717 | Illumina NovaSeq 6000 | SRS20187250 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025220 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_18 (21PG77-1) | SAMN39503622 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 372 | SRX23310923 | SRP484717 | Illumina NovaSeq 6000 | SRS20187252 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025221 | 16 cell: E4.5 | Prelineage: Morula | 16 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_180 (21PG32-2) | SAMN39503621 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 373 | SRX23310924 | SRP484717 | Illumina NovaSeq 6000 | SRS20187253 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025222 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_19 (21PG77-1) | SAMN39503620 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 374 | SRX23310925 | SRP484717 | Illumina NovaSeq 6000 | SRS20187251 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025223 | Early blastocyst: E5.25 | ICM: ICM | Early blastocyst: E5.25 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_191 (21PG49-1) | SAMN39503619 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 375 | SRX23310926 | SRP484717 | Illumina NovaSeq 6000 | SRS20187254 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025224 | Early blastocyst: E5.25 | ICM: PE | Early blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_192 (21PG49-1) | SAMN39503618 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 376 | SRX23310927 | SRP484717 | Illumina NovaSeq 6000 | SRS20187255 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025225 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_193 (21PG57-2) | SAMN39503617 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 377 | SRX23310928 | SRP484717 | Illumina NovaSeq 6000 | SRS20187256 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025226 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_194 (21PG57-2) | SAMN39503616 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 378 | SRX23310929 | SRP484717 | Illumina NovaSeq 6000 | SRS20187258 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025227 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_195 (21PG57-2) | SAMN39503615 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 379 | SRX23311161 | SRP484717 | Illumina NovaSeq 6000 | SRS20187490 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025228 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_196 (21PG57-2) | SAMN39503614 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 380 | SRX23311163 | SRP484717 | Illumina NovaSeq 6000 | SRS20187492 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025230 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_198 (21PG57-2) | SAMN39503612 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 381 | SRX23311164 | SRP484717 | Illumina NovaSeq 6000 | SRS20187494 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025231 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_199 (21PG57-2) | SAMN39503611 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 382 | SRX23311165 | SRP484717 | Illumina NovaSeq 6000 | SRS20187493 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025232 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_2 (21PG50-3) | SAMN39503610 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 383 | SRX23311166 | SRP484717 | Illumina NovaSeq 6000 | SRS20187491 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025233 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_20 (21PG77-1) | SAMN39503609 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 384 | SRX23311167 | SRP484717 | Illumina NovaSeq 6000 | SRS20187495 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025234 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_200 (21PG57-2) | SAMN39503608 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 385 | SRX23311332 | SRP484717 | Illumina NovaSeq 6000 | SRS20187657 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025236 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_202 (21PG57-2) | SAMN39503606 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 386 | SRX23311333 | SRP484717 | Illumina NovaSeq 6000 | SRS20187658 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025237 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_203 (21PG57-2) | SAMN39503605 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 387 | SRX23311335 | SRP484717 | Illumina NovaSeq 6000 | SRS20187663 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025239 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_205 (21PG57-2) | SAMN39503603 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 388 | SRX23311336 | SRP484717 | Illumina NovaSeq 6000 | SRS20187664 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025240 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_206 (21PG57-2) | SAMN39503602 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 389 | SRX23311337 | SRP484717 | Illumina NovaSeq 6000 | SRS20187665 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025241 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_207 (21PG57-2) | SAMN39503601 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 390 | SRX23311338 | SRP484717 | Illumina NovaSeq 6000 | SRS20187666 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025242 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_208 (21PG57-2) | SAMN39503600 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 391 | SRX23311339 | SRP484717 | Illumina NovaSeq 6000 | SRS20187667 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025243 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_209 (21PG75-4) | SAMN39503599 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 392 | SRX23311199 | SRP484717 | Illumina NovaSeq 6000 | SRS20187526 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025244 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_21 (21PG77-1) | SAMN39503598 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 393 | SRX23311200 | SRP484717 | Illumina NovaSeq 6000 | SRS20187528 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025245 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_210 (21PG75-4) | SAMN39503597 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 394 | SRX23311201 | SRP484717 | Illumina NovaSeq 6000 | SRS20187530 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025246 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_211 (21PG75-4) | SAMN39503596 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 395 | SRX23311202 | SRP484717 | Illumina NovaSeq 6000 | SRS20187532 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025247 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_212 (21PG75-4) | SAMN39503595 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 396 | SRX23311203 | SRP484717 | Illumina NovaSeq 6000 | SRS20187531 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025248 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_213 (21PG75-4) | SAMN39503594 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 397 | SRX23311204 | SRP484717 | Illumina NovaSeq 6000 | SRS20187529 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025249 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_214 (21PG75-4) | SAMN39503593 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 398 | SRX23311205 | SRP484717 | Illumina NovaSeq 6000 | SRS20187534 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025250 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_215 (21PG75-4) | SAMN39503592 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 399 | SRX23311206 | SRP484717 | Illumina NovaSeq 6000 | SRS20187533 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025251 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_216 (21PG75-4) | SAMN39503591 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 400 | SRX23311169 | SRP484717 | Illumina NovaSeq 6000 | SRS20187497 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025252 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_217 (21PG75-4) | SAMN39503590 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 401 | SRX23311170 | SRP484717 | Illumina NovaSeq 6000 | SRS20187498 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025253 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_218 (21PG75-4) | SAMN39503589 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 402 | SRX23311171 | SRP484717 | Illumina NovaSeq 6000 | SRS20187500 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025254 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_219 (21PG75-4) | SAMN39503588 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 403 | SRX23311172 | SRP484717 | Illumina NovaSeq 6000 | SRS20187499 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025255 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_22 (21PG77-1) | SAMN39503587 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 404 | SRX23311260 | SRP484717 | Illumina NovaSeq 6000 | SRS20187592 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025256 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_220 (21PG75-4) | SAMN39503586 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 405 | SRX23311261 | SRP484717 | Illumina NovaSeq 6000 | SRS20187587 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025257 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_221 (21PG75-4) | SAMN39503585 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 406 | SRX23311262 | SRP484717 | Illumina NovaSeq 6000 | SRS20187588 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025258 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_222 (21PG75-4) | SAMN39503584 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 407 | SRX23311263 | SRP484717 | Illumina NovaSeq 6000 | SRS20187598 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025259 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_223 (21PG75-4) | SAMN39503583 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 408 | SRX23311341 | SRP484717 | Illumina NovaSeq 6000 | SRS20187670 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025261 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_225 (21PG75-4) | SAMN39503581 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 409 | SRX23311342 | SRP484717 | Illumina NovaSeq 6000 | SRS20187669 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025262 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_226 (21PG75-4) | SAMN39503580 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 410 | SRX23311343 | SRP484717 | Illumina NovaSeq 6000 | SRS20187671 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025263 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_227 (21PG75-4) | SAMN39503579 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 411 | SRX23311345 | SRP484717 | Illumina NovaSeq 6000 | SRS20187673 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025265 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_23 (21PG77-1) | SAMN39503577 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 412 | SRX23311346 | SRP484717 | Illumina NovaSeq 6000 | SRS20187675 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025266 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_24 (21PG77-1) | SAMN39503576 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 413 | SRX23311347 | SRP484717 | Illumina NovaSeq 6000 | SRS20187676 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025267 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_25 (21PG40-2) | SAMN39503575 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 414 | SRX23311207 | SRP484717 | Illumina NovaSeq 6000 | SRS20187538 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025268 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_26 (21PG40-2) | SAMN39503574 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 415 | SRX23311211 | SRP484717 | Illumina NovaSeq 6000 | SRS20187536 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025272 | Late blastocyst: E5.75 | ICM: PE | Late blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_269 (21PG76-2) | SAMN39503570 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 416 | SRX23311212 | SRP484717 | Illumina NovaSeq 6000 | SRS20187540 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025273 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_27 (21PG40-2) | SAMN39503569 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 417 | SRX23311213 | SRP484717 | Illumina NovaSeq 6000 | SRS20187541 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025274 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_270 (21PG76-2) | SAMN39503568 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 418 | SRX23311214 | SRP484717 | Illumina NovaSeq 6000 | SRS20187544 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025275 | Late blastocyst: E5.75 | TE: mural | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_271 (21PG76-2) | SAMN39503567 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 419 | SRX23310935 | SRP484717 | Illumina NovaSeq 6000 | SRS20187263 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025281 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_277 (21PG76-2) | SAMN39503561 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 420 | SRX23311264 | SRP484717 | Illumina NovaSeq 6000 | SRS20187589 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025284 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_28 (21PG40-2) | SAMN39503558 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 421 | SRX23311266 | SRP484717 | Illumina NovaSeq 6000 | SRS20187594 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025286 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_281 (21PG45-2) | SAMN39503556 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 422 | SRX23311348 | SRP484717 | Illumina NovaSeq 6000 | SRS20187674 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025292 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_287 (21PG45-2) | SAMN39503550 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 423 | SRX23311350 | SRP484717 | Illumina NovaSeq 6000 | SRS20187677 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025294 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_289 (21PG35-1) | SAMN39503548 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 424 | SRX23311351 | SRP484717 | Illumina NovaSeq 6000 | SRS20187678 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025295 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_29 (21PG40-2) | SAMN39503547 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 425 | SRX23311352 | SRP484717 | Illumina NovaSeq 6000 | SRS20187680 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025296 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_290 (21PG35-1) | SAMN39503546 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 426 | SRX23311353 | SRP484717 | Illumina NovaSeq 6000 | SRS20187681 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025297 | Middle blastocyst: E5.25 | TE: polar | Middle blastocyst: E5.25 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_291 (21PG35-1) | SAMN39503545 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 427 | SRX23311216 | SRP484717 | Illumina NovaSeq 6000 | SRS20187542 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025301 | Middle blastocyst: E5.25 | ICM: PE | Middle blastocyst: E5.25 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_295 (21PG35-1) | SAMN39503541 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 428 | SRX23311217 | SRP484717 | Illumina NovaSeq 6000 | SRS20187543 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025302 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_296 (21PG65-1) | SAMN39503540 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 429 | SRX23311218 | SRP484717 | Illumina NovaSeq 6000 | SRS20187546 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025303 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_297 (21PG65-1) | SAMN39503539 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 430 | SRX23311219 | SRP484717 | Illumina NovaSeq 6000 | SRS20187547 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025304 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_298 (21PG65-1) | SAMN39503538 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 431 | SRX23311220 | SRP484717 | Illumina NovaSeq 6000 | SRS20187548 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025305 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_299 (21PG65-1) | SAMN39503537 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 432 | SRX23311221 | SRP484717 | Illumina NovaSeq 6000 | SRS20187549 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025306 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_3 (21PG50-3) | SAMN39503536 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 433 | SRX23311222 | SRP484717 | Illumina NovaSeq 6000 | SRS20187551 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025307 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_30 (21PG40-2) | SAMN39503535 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 434 | SRX23310938 | SRP484717 | Illumina NovaSeq 6000 | SRS20187265 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025308 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_300 (21PG65-1) | SAMN39503534 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 435 | SRX23310939 | SRP484717 | Illumina NovaSeq 6000 | SRS20187267 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025309 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_301 (21PG65-1) | SAMN39503533 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 436 | SRX23310940 | SRP484717 | Illumina NovaSeq 6000 | SRS20187269 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025310 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_302 (21PG65-1) | SAMN39503532 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 437 | SRX23310941 | SRP484717 | Illumina NovaSeq 6000 | SRS20187268 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025311 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_303 (21PG65-1) | SAMN39503531 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 438 | SRX23310942 | SRP484717 | Illumina NovaSeq 6000 | SRS20187270 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025312 | Late blastocyst: E6 | ICM: EPI | Late blastocyst: E6 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_304 (21PG65-1) | SAMN39503530 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 439 | SRX23310943 | SRP484717 | Illumina NovaSeq 6000 | SRS20187271 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025313 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_305 (21PG65-1) | SAMN39503529 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 440 | SRX23310944 | SRP484717 | Illumina NovaSeq 6000 | SRS20187272 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025314 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_306 (21PG65-1) | SAMN39503528 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 441 | SRX23310945 | SRP484717 | Illumina NovaSeq 6000 | SRS20187273 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025315 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_307 (21PG65-1) | SAMN39503527 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 442 | SRX23311272 | SRP484717 | Illumina NovaSeq 6000 | SRS20187602 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025316 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_308 (21PG65-1) | SAMN39503526 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 443 | SRX23311273 | SRP484717 | Illumina NovaSeq 6000 | SRS20187601 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025317 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_309 (21PG65-1) | SAMN39503525 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 444 | SRX23311274 | SRP484717 | Illumina NovaSeq 6000 | SRS20187600 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025318 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_31 (21PG40-2) | SAMN39503524 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 445 | SRX23311275 | SRP484717 | Illumina NovaSeq 6000 | SRS20187603 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025319 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_310 (21PG65-1) | SAMN39503523 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 446 | SRX23311276 | SRP484717 | Illumina NovaSeq 6000 | SRS20187604 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025320 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_311 (21PG65-1) | SAMN39503522 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 447 | SRX23311277 | SRP484717 | Illumina NovaSeq 6000 | SRS20187605 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025321 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_312 (21PG65-1) | SAMN39503521 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 448 | SRX23311278 | SRP484717 | Illumina NovaSeq 6000 | SRS20187606 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025322 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_313 (21PG65-1) | SAMN39503520 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 449 | SRX23311279 | SRP484717 | Illumina NovaSeq 6000 | SRS20187607 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025323 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_314 (21PG65-2) | SAMN39503519 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 450 | SRX23311356 | SRP484717 | Illumina NovaSeq 6000 | SRS20187682 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025324 | Late blastocyst: E6 | ICM: PE | Late blastocyst: E6 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_315 (21PG65-2) | SAMN39503518 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 451 | SRX23311357 | SRP484717 | Illumina NovaSeq 6000 | SRS20187686 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025325 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_316 (21PG65-2) | SAMN39503517 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 452 | SRX23311358 | SRP484717 | Illumina NovaSeq 6000 | SRS20187685 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025326 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_317 (21PG65-2) | SAMN39503516 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 453 | SRX23311359 | SRP484717 | Illumina NovaSeq 6000 | SRS20187687 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025327 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_318 (21PG65-2) | SAMN39503515 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 454 | SRX23311360 | SRP484717 | Illumina NovaSeq 6000 | SRS20187688 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025328 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_319 (21PG65-2) | SAMN39503514 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 455 | SRX23311361 | SRP484717 | Illumina NovaSeq 6000 | SRS20187690 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025329 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_32 (21PG40-2) | SAMN39503513 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 456 | SRX23311362 | SRP484717 | Illumina NovaSeq 6000 | SRS20187689 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025330 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_320 (21PG65-2) | SAMN39503512 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 457 | SRX23311363 | SRP484717 | Illumina NovaSeq 6000 | SRS20187691 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025331 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_321 (21PG65-2) | SAMN39503511 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 458 | SRX23311223 | SRP484717 | Illumina NovaSeq 6000 | SRS20187550 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025332 | Late blastocyst: E6 | TE: mural | Late blastocyst: E6 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_322 (21PG65-2) | SAMN39503510 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 459 | SRX23311224 | SRP484717 | Illumina NovaSeq 6000 | SRS20187553 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025333 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_323 (20PG3-1) | SAMN39503509 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 460 | SRX23310946 | SRP484717 | Illumina NovaSeq 6000 | SRS20187274 | UBERON:0000085 | morula | CL:1000274 | trophectodermal cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025340 | 16-32 cell: E4.5 | TE: polar | 16-32 cell: E4.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_33 (21PG40-2) | SAMN39503502 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 461 | SRX23310947 | SRP484717 | Illumina NovaSeq 6000 | SRS20187275 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025341 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_330 (20PG3-1) | SAMN39503501 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 462 | SRX23310948 | SRP484717 | Illumina NovaSeq 6000 | SRS20187276 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025342 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_331 (20PG3-1) | SAMN39503500 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 463 | SRX23310953 | SRP484717 | Illumina NovaSeq 6000 | SRS20187281 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025347 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_336 (20PG3-1) | SAMN39503495 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 464 | SRX23311282 | SRP484717 | Illumina NovaSeq 6000 | SRS20187609 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025350 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_339 (20PG3-1) | SAMN39503492 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 465 | SRX23311283 | SRP484717 | Illumina NovaSeq 6000 | SRS20187611 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025351 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_34 (21PG40-2) | SAMN39503491 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 466 | SRX23311284 | SRP484717 | Illumina NovaSeq 6000 | SRS20187612 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025352 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_340 (20PG3-1) | SAMN39503490 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 467 | SRX23311286 | SRP484717 | Illumina NovaSeq 6000 | SRS20187614 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025354 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_342 (20PG3-1) | SAMN39503488 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 468 | SRX23311366 | SRP484717 | Illumina NovaSeq 6000 | SRS20187693 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025358 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_346 (20PG4-3) | SAMN39503484 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 469 | SRX23311367 | SRP484717 | Illumina NovaSeq 6000 | SRS20187695 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025359 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_347 (20PG4-3) | SAMN39503483 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 470 | SRX23311368 | SRP484717 | Illumina NovaSeq 6000 | SRS20187697 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025360 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_348 (20PG4-3) | SAMN39503482 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 471 | SRX23311369 | SRP484717 | Illumina NovaSeq 6000 | SRS20187696 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025361 | Middle blastocyst: E5.5 | ICM: EPI | Middle blastocyst: E5.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_349 (20PG4-3) | SAMN39503481 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 472 | SRX23311370 | SRP484717 | Illumina NovaSeq 6000 | SRS20187700 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025362 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_35 (21PG40-2) | SAMN39503480 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 473 | SRX23311371 | SRP484717 | Illumina NovaSeq 6000 | SRS20187702 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025363 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_350 (20PG4-3) | SAMN39503479 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 474 | SRX23311231 | SRP484717 | Illumina NovaSeq 6000 | SRS20187560 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025364 | Middle blastocyst: E5.5 | ICM: PE | Middle blastocyst: E5.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_351 (20PG4-3) | SAMN39503478 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 475 | SRX23311232 | SRP484717 | Illumina NovaSeq 6000 | SRS20187566 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025365 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_352 (20PG4-3) | SAMN39503477 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 476 | SRX23311233 | SRP484717 | Illumina NovaSeq 6000 | SRS20187559 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025366 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_353 (20PG4-3) | SAMN39503476 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 477 | SRX23311234 | SRP484717 | Illumina NovaSeq 6000 | SRS20187561 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025367 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_354 (20PG4-3) | SAMN39503475 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 478 | SRX23311235 | SRP484717 | Illumina NovaSeq 6000 | SRS20187562 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025368 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_355 (20PG4-3) | SAMN39503474 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 479 | SRX23311236 | SRP484717 | Illumina NovaSeq 6000 | SRS20187567 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025369 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_356 (20PG4-3) | SAMN39503473 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 480 | SRX23311237 | SRP484717 | Illumina NovaSeq 6000 | SRS20187563 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025370 | Middle blastocyst: E5.5 | TE: mural | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_357 (20PG4-3) | SAMN39503472 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 481 | SRX23311238 | SRP484717 | Illumina NovaSeq 6000 | SRS20187564 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025371 | Middle blastocyst: E5.5 | TE: polar | Middle blastocyst: E5.5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_358 (20PG4-3) | SAMN39503471 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 482 | SRX23310954 | SRP484717 | Illumina NovaSeq 6000 | SRS20187282 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025372 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_359 (21PG33-2) | SAMN39503470 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 483 | SRX23310955 | SRP484717 | Illumina NovaSeq 6000 | SRS20187285 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025373 | 16-32 cell: E4.5 | Prelineage: Precavitation | 16-32 cell: E4.5 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_36 (21PG40-2) | SAMN39503469 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 484 | SRX23310956 | SRP484717 | Illumina NovaSeq 6000 | SRS20187283 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025374 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_360 (21PG33-2) | SAMN39503468 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 485 | SRX23310957 | SRP484717 | Illumina NovaSeq 6000 | SRS20187284 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025375 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_361 (21PG33-2) | SAMN39503467 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 486 | SRX23310958 | SRP484717 | Illumina NovaSeq 6000 | SRS20187286 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025376 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_362 (21PG33-2) | SAMN39503466 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 487 | SRX23310959 | SRP484717 | Illumina NovaSeq 6000 | SRS20187288 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025377 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_363 (21PG33-2) | SAMN39503465 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 488 | SRX23310960 | SRP484717 | Illumina NovaSeq 6000 | SRS20187287 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025378 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_364 (21PG33-2) | SAMN39503464 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 489 | SRX23310961 | SRP484717 | Illumina NovaSeq 6000 | SRS20187289 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025379 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_365 (21PG33-2) | SAMN39503463 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 490 | SRX23311288 | SRP484717 | Illumina NovaSeq 6000 | SRS20187615 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025380 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_366 (21PG33-2) | SAMN39503462 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 491 | SRX23311291 | SRP484717 | Illumina NovaSeq 6000 | SRS20187619 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025383 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_369 (21PG33-2) | SAMN39503459 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 492 | SRX23311292 | SRP484717 | Illumina NovaSeq 6000 | SRS20187620 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025384 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_37 (21PG40-2) | SAMN39503458 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 493 | SRX23311293 | SRP484717 | Illumina NovaSeq 6000 | SRS20187621 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025385 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_370 (21PG33-2) | SAMN39503457 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 494 | SRX23311294 | SRP484717 | Illumina NovaSeq 6000 | SRS20187626 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025386 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_371 (21PG33-2) | SAMN39503456 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 495 | SRX23311295 | SRP484717 | Illumina NovaSeq 6000 | SRS20187623 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025387 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_372 (21PG33-2) | SAMN39503455 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 496 | SRX23311373 | SRP484717 | Illumina NovaSeq 6000 | SRS20187699 | UBERON:0000085 | morula | CL:2000020 | inner cell mass cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025389 | 16-32 cell: E4.5 | ICM: ICM | 16-32 cell: E4.5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_39 (21PG40-2) | SAMN39503453 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 497 | SRX23311374 | SRP484717 | Illumina NovaSeq 6000 | SRS20187701 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025390 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_4 (21PG50-3) | SAMN39503452 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 498 | SRX23311376 | SRP484717 | Illumina NovaSeq 6000 | SRS20187704 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025392 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_41 (21PG33-1) | SAMN39503450 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 499 | SRX23311377 | SRP484717 | Illumina NovaSeq 6000 | SRS20187705 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025393 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_42 (21PG33-1) | SAMN39503449 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 500 | SRX23311378 | SRP484717 | Illumina NovaSeq 6000 | SRS20187706 | UBERON:0000358 | blastocyst | CL:2000020 | inner cell mass cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025394 | Early blastocyst: E5 | ICM: ICM | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_43 (21PG33-1) | SAMN39503448 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 501 | SRX23311379 | SRP484717 | Illumina NovaSeq 6000 | SRS20187709 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025395 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_44 (21PG33-1) | SAMN39503447 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 502 | SRX23311239 | SRP484717 | Illumina NovaSeq 6000 | SRS20187573 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025396 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_45 (21PG33-1) | SAMN39503446 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 503 | SRX23311241 | SRP484717 | Illumina NovaSeq 6000 | SRS20187568 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025398 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_47 (21PG33-1) | SAMN39503444 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 504 | SRX23311242 | SRP484717 | Illumina NovaSeq 6000 | SRS20187569 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025399 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_48 (21PG33-1) | SAMN39503443 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 505 | SRX23311243 | SRP484717 | Illumina NovaSeq 6000 | SRS20187571 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025400 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_49 (21PG33-1) | SAMN39503442 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 506 | SRX23311244 | SRP484717 | Illumina NovaSeq 6000 | SRS20187570 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025401 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_5 (21PG50-3) | SAMN39503441 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 507 | SRX23311245 | SRP484717 | Illumina NovaSeq 6000 | SRS20187572 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025402 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_50 (21PG33-1) | SAMN39503440 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 508 | SRX23311246 | SRP484717 | Illumina NovaSeq 6000 | SRS20187574 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025403 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_51 (21PG33-1) | SAMN39503439 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 509 | SRX23310962 | SRP484717 | Illumina NovaSeq 6000 | SRS20187291 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025404 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_52 (21PG33-1) | SAMN39503438 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 510 | SRX23310963 | SRP484717 | Illumina NovaSeq 6000 | SRS20187290 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025405 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_53 (21PG33-1) | SAMN39503437 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 511 | SRX23310964 | SRP484717 | Illumina NovaSeq 6000 | SRS20187293 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025406 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_54 (21PG33-1) | SAMN39503436 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 512 | SRX23310965 | SRP484717 | Illumina NovaSeq 6000 | SRS20187292 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025407 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_55 (21PG33-1) | SAMN39503435 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 513 | SRX23310966 | SRP484717 | Illumina NovaSeq 6000 | SRS20187294 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025408 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_56 (21PG33-1) | SAMN39503434 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 514 | SRX23310967 | SRP484717 | Illumina NovaSeq 6000 | SRS20187295 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025409 | Early blastocyst: E5 | TE: polar | Early blastocyst: E5 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_57 (21PG33-1) | SAMN39503433 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 515 | SRX23310968 | SRP484717 | Illumina NovaSeq 6000 | SRS20187296 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025410 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_58 (21PG33-1) | SAMN39503432 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 516 | SRX23311296 | SRP484717 | Illumina NovaSeq 6000 | SRS20187622 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025412 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_6 (21PG50-3) | SAMN39503430 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 517 | SRX23311297 | SRP484717 | Illumina NovaSeq 6000 | SRS20187624 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025413 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_60 (21PG33-1) | SAMN39503429 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 518 | SRX23311298 | SRP484717 | Illumina NovaSeq 6000 | SRS20187627 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025414 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_61 (21PG33-1) | SAMN39503428 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 519 | SRX23311299 | SRP484717 | Illumina NovaSeq 6000 | SRS20187625 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025415 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_62 (21PG33-1) | SAMN39503427 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 520 | SRX23311383 | SRP484717 | Illumina NovaSeq 6000 | SRS20187711 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025423 | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_7 (21PG50-3) | SAMN39503419 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 521 | SRX23311253 | SRP484717 | Illumina NovaSeq 6000 | SRS20187581 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025434 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_8 (21PG77-1) | SAMN39503408 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 522 | SRX23311254 | SRP484717 | Illumina NovaSeq 6000 | SRS20187582 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025435 | Early blastocyst: E5 | ICM: EPI | Early blastocyst: E5 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_80 (21PG42-2) | SAMN39503407 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 523 | SRX23310971 | SRP484717 | Illumina NovaSeq 6000 | SRS20187299 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025437 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_82 (21PG55-1) | SAMN39503405 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 524 | SRX23310972 | SRP484717 | Illumina NovaSeq 6000 | SRS20187300 | UBERON:0000358 | blastocyst | CL:0000223 | endodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025438 | Middle blastocyst: E5.75 | ICM: PE | Middle blastocyst: E5.75 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_83 (21PG55-1) | SAMN39503404 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 525 | SRX23310973 | SRP484717 | Illumina NovaSeq 6000 | SRS20187301 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025439 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_84 (21PG55-1) | SAMN39503403 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 526 | SRX23310974 | SRP484717 | Illumina NovaSeq 6000 | SRS20187302 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025440 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_85 (21PG55-1) | SAMN39503402 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 527 | SRX23310975 | SRP484717 | Illumina NovaSeq 6000 | SRS20187305 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025441 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_86 (21PG55-1) | SAMN39503401 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 528 | SRX23310976 | SRP484717 | Illumina NovaSeq 6000 | SRS20187304 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025442 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_87 (21PG55-1) | SAMN39503400 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 529 | SRX23310977 | SRP484717 | Illumina NovaSeq 6000 | SRS20187303 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025443 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_88 (21PG55-1) | SAMN39503399 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 530 | SRX23311304 | SRP484717 | Illumina NovaSeq 6000 | SRS20187631 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025444 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_89 (21PG55-1) | SAMN39503398 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 531 | SRX23311305 | SRP484717 | Illumina NovaSeq 6000 | SRS20187634 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025445 | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_9 (21PG77-1) | SAMN39503397 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 532 | SRX23311306 | SRP484717 | Illumina NovaSeq 6000 | SRS20187632 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025446 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_90 (21PG55-1) | SAMN39503396 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 533 | SRX23311307 | SRP484717 | Illumina NovaSeq 6000 | SRS20187637 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025447 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_91 (21PG55-1) | SAMN39503395 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 534 | SRX23311309 | SRP484717 | Illumina NovaSeq 6000 | SRS20187636 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025449 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_93 (21PG55-1) | SAMN39503393 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 535 | SRX23311310 | SRP484717 | Illumina NovaSeq 6000 | SRS20187638 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025450 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_94 (21PG55-1) | SAMN39503392 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 536 | SRX23311311 | SRP484717 | Illumina NovaSeq 6000 | SRS20187639 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025451 | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_95 (21PG55-1) | SAMN39503391 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 537 | SRX23311388 | SRP484717 | Illumina NovaSeq 6000 | SRS20187716 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025452 | Middle blastocyst: E5.75 | TE: polar | Middle blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_96 (21PG55-1) | SAMN39503390 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 538 | SRX23311389 | SRP484717 | Illumina NovaSeq 6000 | SRS20187718 | UBERON:0000358 | blastocyst | CL:1000274 | trophectodermal cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025453 | Late blastocyst: E5.75 | TE: polar | Late blastocyst: E5.75 | missing child term | missing child term | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_97 (21PG55-3) | SAMN39503389 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 539 | SRX23311390 | SRP484717 | Illumina NovaSeq 6000 | SRS20187720 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025454 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_98 (21PG55-3) | SAMN39503388 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 | |||||
| 540 | SRX23311391 | SRP484717 | Illumina NovaSeq 6000 | SRS20187717 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSM8025455 | Late blastocyst: E5.75 | ICM: EPI | Late blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_2_99 (21PG55-3) | SAMN39503387 | no PMID but DOI: 10.1101/2024.02.05.578945, all info found in supplementary table 1 or taken directly from the paper | SAC | 2025-02-20 |
experiment annotations¶
In [ ]:
experiment = pd.read_csv(experiment_path_from_script, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
experiment.head()
Out[ ]:
| #experimentId | experimentName | experimentDescription | experimentSource | experimentStatus | RNAseqTags | numberOfAnnotatedLibraries | protocol | protocolType | GSE | Bioproject | PMID | reference_url | DOI | xrefs | comment | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRP484717 | The Guinea Pig Serves as an Alternative Model ... | Preimplantation development is a pivotal phase... | SRA | Smart-Seq2 | Full-length | PRJNA1066746 |
experiment and protocol details¶
In [ ]:
library_to_add = pd.read_csv(library_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
# this will give you the number of rows in the complete library file
# this should be the number of annotated libraries
ann_lib = len(library_to_add.index)
len(library_to_add.index)
Out[ ]:
541
In [ ]:
# partial or total
experiment.loc[:,'experimentStatus'] = 'partial'
# scRNA-seq, Sn-scRNA-seq for both we put: 'Sn-scRNA-seq, scRNA-seq'
experiment.loc[:,'RNAseqTags'] = 'scRNA-seq'
# see above cell, also can add as free text
experiment.loc[:,'numberOfAnnotatedLibraries'] = ann_lib
# these variables should already exist from above but if not can just add as free text
#experiment.loc[:,'protocol'] = my_protocol
#experiment.loc[:,'protocolType'] = my_protocolType
experiment.head()
Out[ ]:
| #experimentId | experimentName | experimentDescription | experimentSource | experimentStatus | RNAseqTags | numberOfAnnotatedLibraries | protocol | protocolType | GSE | Bioproject | PMID | reference_url | DOI | xrefs | comment | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRP484717 | The Guinea Pig Serves as an Alternative Model ... | Preimplantation development is a pivotal phase... | SRA | partial | scRNA-seq | 541 | Smart-Seq2 | Full-length | PRJNA1066746 |
paper and xrefs¶
In [ ]:
experiment.loc[:,'GSE'] = 'GSE253670'
#experiment.loc[:,'Bioproject'] = ''
#experiment.loc[:,'PMID'] = ''
experiment.loc[:,'reference_url'] = 'https://www.biorxiv.org/content/10.1101/2024.02.05.578945v1.full'
experiment.loc[:,'DOI'] = '10.1101/2024.02.05.578945'
#experiment.loc[:,'xrefs'] = ''
experiment.head()
Out[ ]:
| #experimentId | experimentName | experimentDescription | experimentSource | experimentStatus | RNAseqTags | numberOfAnnotatedLibraries | protocol | protocolType | GSE | Bioproject | PMID | reference_url | DOI | xrefs | comment | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRP484717 | The Guinea Pig Serves as an Alternative Model ... | Preimplantation development is a pivotal phase... | SRA | partial | scRNA-seq | 541 | Smart-Seq2 | Full-length | GSE253670 | PRJNA1066746 | https://www.biorxiv.org/content/10.1101/2024.0... | 10.1101/2024.02.05.578945 |
comments¶
In [ ]:
experiment.loc[:,'comment'] = 'no PMID because paper is still in preprint although PMID 37284942 methods paper may also reference this dataset however we were unable to access this paper, partial because i removed cells that did not pass QC'
experiment.head()
Out[ ]:
| #experimentId | experimentName | experimentDescription | experimentSource | experimentStatus | RNAseqTags | numberOfAnnotatedLibraries | protocol | protocolType | GSE | Bioproject | PMID | reference_url | DOI | xrefs | comment | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | SRP484717 | The Guinea Pig Serves as an Alternative Model ... | Preimplantation development is a pivotal phase... | SRA | partial | scRNA-seq | 541 | Smart-Seq2 | Full-length | GSE253670 | PRJNA1066746 | https://www.biorxiv.org/content/10.1101/2024.0... | 10.1101/2024.02.05.578945 | no PMID because paper is still in preprint alt... |
save complete file¶
In [ ]:
experiment.to_csv(experiment_to_add_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
QA time¶
In [ ]:
library_to_add = pd.read_csv(library_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
experiment_to_add = pd.read_csv(experiment_to_add_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
to add things here¶
- add check that experimentDescription in experiment file isn't blank or NA
- add check that all anat, celltype, stage columns are filled out
- celltype can be blank if 10X experiment but should have a flag for that
- add check that all annotation status columns are filled out
check columns match¶
In [ ]:
# pull from git and pull in library/experiment file
! git pull
git_library = pd.read_csv(git_library_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
git_experiment = pd.read_csv(git_experiment_path, sep='\t', index_col=False, keep_default_na=False, na_values=['NULL','null', 'nan','NaN', " "], dtype=object)
# library file
if set(library_to_add.columns) == set(git_library.columns):
print('The columns in the library file match')
else:
print('The columns in the library file DO NOT MATCH')
# experiment file
if set(experiment_to_add.columns) == set(git_experiment.columns):
print('The columns in the experiment file match')
else:
print('The columns in the experiment file DO NOT MATCH')
# maybe to make this something more like "COLUMNS GOOD - LIBRARY" and "COLUMNS BAD - EXPERIMENT"
Already up to date. The columns in the library file match The columns in the experiment file match
view files¶
In [ ]:
library_git_plus_new = pd.concat([git_library, library_to_add], ignore_index = True, sort = False)
old_length = git_library.shape[0]
start = old_length - 2
end = old_length + 5
view_lib = library_git_plus_new.iloc[start:end]
view_lib
Out[ ]:
| #libraryId | experimentId | platform | SRSId | anatId | anatName | cellTypeId | cellTypeName | stageId | stageName | url_GSM | infoOrgan | infoCellType_abInitio | infoCellType_inferred | clusterId | clusterName | infoStage | anatAnnotationStatus | cellTypeAnnotationStatus | stageAnnotationStatus | sex | strain | genotype | speciesId | RNAseqTags | protocol | protocolType | lib_name | sampleName | comment | condition | annotatorId | lastModificationDate | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 59080 | ERX11130831 | ERP136630 | Illumina NovaSeq 6000 | ERS16039576 | UBERON:0006538 | respiratory system fluid/secretion | EcabDv:0000004 | mature stage | bronchoalveolar lavage fluid | over 5 years | perfect match | perfect match | M | Swiss Warmblood | 9796 | scRNA-seq | 10X Genomics V3.1 | 3'end | 51C | SAMEA114056345 | SAC | 2025-02-12 | |||||||||||
| 59081 | ERX11130830 | ERP136630 | Illumina NovaSeq 6000 | ERS16039575 | UBERON:0006538 | respiratory system fluid/secretion | EcabDv:0000004 | mature stage | bronchoalveolar lavage fluid | over 5 years | perfect match | perfect match | F | Swiss Warmblood | 9796 | scRNA-seq | 10X Genomics V3.1 | 3'end | 46C | SAMEA114056344 | SAC | 2025-02-12 | |||||||||||
| 59082 | SRX23310999 | SRP484717 | Illumina NovaSeq 6000 | SRS20187327 | UBERON:0019252 | 8-cell stage embryo | CL:0000353 | blastoderm cell | UBERON:0007236 | 8 cell stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... | 8 cell: E3.5 | Prelineage: 8 cell | 8 cell: E3.5 | perfect match | other | perfect match | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_1 (21PG50-2) | SAMN39504047 | no PMID but DOI: 10.1101/2024.02.05.578945, a... | SAC | 2025-02-20 | |||||
| 59083 | SRX23311255 | SRP484717 | Illumina NovaSeq 6000 | SRS20187583 | UBERON:0000085 | morula | CL:0000353 | blastoderm cell | UBERON:0000107 | cleavage stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... | 16 cell: E4 | Prelineage: Morula | 16 cell: E4 | missing child term | other | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_10 (21PG39-1) | SAMN39504046 | no PMID but DOI: 10.1101/2024.02.05.578945, a... | SAC | 2025-02-20 | |||||
| 59084 | SRX23311256 | SRP484717 | Illumina NovaSeq 6000 | SRS20187584 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_100 (21PG55-2) | SAMN39504045 | no PMID but DOI: 10.1101/2024.02.05.578945, a... | SAC | 2025-02-20 | |||||
| 59085 | SRX23311257 | SRP484717 | Illumina NovaSeq 6000 | SRS20187585 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_101 (21PG55-2) | SAMN39504044 | no PMID but DOI: 10.1101/2024.02.05.578945, a... | SAC | 2025-02-20 | |||||
| 59086 | SRX23311258 | SRP484717 | Illumina NovaSeq 6000 | SRS20187586 | UBERON:0000358 | blastocyst | CL:0000352 | epiblast cell | UBERON:0000108 | blastula stage | https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi... | Middle blastocyst: E5.75 | ICM: EPI | Middle blastocyst: E5.75 | missing child term | perfect match | missing child term | NA | Hartley | 10141 | scRNA-seq | Smart-Seq2 | Full-length | JC_1_102 (21PG55-2) | SAMN39504043 | no PMID but DOI: 10.1101/2024.02.05.578945, a... | SAC | 2025-02-20 |
In [ ]:
experiment_git_plus_new = pd.concat([git_experiment, experiment_to_add], ignore_index = True, sort = False)
experiment_git_plus_new.tail(n=3)
Out[ ]:
| #experimentId | experimentName | experimentDescription | experimentSource | experimentStatus | RNAseqTags | numberOfAnnotatedLibraries | protocol | protocolType | GSE | Bioproject | PMID | reference_url | DOI | xrefs | comment | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 109 | SRP487479 | Transcriptomic response in osteoarthritis dete... | We used single-cell RNA sequencing to characte... | SRA | partial | scRNA-seq | 4 | 10X Genomics V3.1 | 3'end | GSE254840 | PRJNA1072060 | 39507442 | https://atm.amegroups.org/article/view/129887/... | 10.21037/atm-24-40 | partial b/c removed samples with osteoarthritis | |
| 110 | ERP136630 | This is a repository for all raw data of singl... | The transcriptomic profile and the composition... | ENA | partial | scRNA-seq | 5 | 10X Genomics V3.1 | 3'end | PRJEB51962 | 38153159 | https://onlinelibrary.wiley.com/doi/10.1111/im... | 10.1111/imm.13745 | 36292607[PMID], 36105804[PMID] | removed asthmatic samples and one pacbio isose... | |
| 111 | SRP484717 | The Guinea Pig Serves as an Alternative Model ... | Preimplantation development is a pivotal phase... | SRA | partial | scRNA-seq | 541 | Smart-Seq2 | Full-length | GSE253670 | PRJNA1066746 | https://www.biorxiv.org/content/10.1101/2024.0... | 10.1101/2024.02.05.578945 | no PMID because paper is still in preprint alt... |
add annotations to git¶
In [ ]:
! git pull
Already up to date.
In [ ]:
library_git_plus_new.to_csv(git_library_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
update_format(git_library_path)
experiment_git_plus_new.to_csv(git_experiment_path, sep="\t", index=False, quoting=csv.QUOTE_ALL)
update_format(git_experiment_path)
In [ ]:
! git status
On branch develop Your branch is up to date with 'origin/develop'. Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git restore <file>..." to discard changes in working directory) modified: ../../../scRNA_Seq/scRNASeqExperiment.tsv modified: ../../../scRNA_Seq/scRNASeqLibrary_merged.tsv Untracked files: (use "git add <file>..." to include in what will be committed) ./ ../SRP537812_waiting/ no changes added to commit (use "git add" and/or "git commit -a")
In [ ]:
# smart-seq (no barcode file)
! git add $git_experiment_path $git_library_path
In [ ]:
! git status
On branch develop Your branch is up to date with 'origin/develop'. Changes to be committed: (use "git restore --staged <file>..." to unstage) modified: ../../../scRNA_Seq/scRNASeqExperiment.tsv modified: ../../../scRNA_Seq/scRNASeqLibrary_merged.tsv Untracked files: (use "git add <file>..." to include in what will be committed) ./ ../SRP537812_waiting/
In [ ]:
! git commit -m $commit_message_exp
[develop 059ebde] adding annotated scRNA experiment SRP484717 2 files changed, 542 insertions(+)
In [ ]:
! git push
Enumerating objects: 9, done. Counting objects: 100% (9/9), done. Delta compression using up to 12 threads Compressing objects: 100% (5/5), done. Writing objects: 100% (5/5), 15.34 KiB | 86.00 KiB/s, done. Total 5 (delta 4), reused 0 (delta 0), pack-reused 0 remote: remote: To create a merge request for develop, visit: remote: https://gitlab.sib.swiss/Bgee/expression-annotations/-/merge_requests/new?merge_request%5Bsource_branch%5D=develop remote: To https://gitlab.sib.swiss/Bgee/expression-annotations.git ef16fe4..059ebde develop -> develop
add annotation folder and script to git¶
first - run annotation summary cells, save ipynb, export to html
In [ ]:
! git status
In [ ]:
! git add $path_to_output
In [ ]:
! git commit -m $commit_message_py
In [ ]:
! git push